--- title: account.sentEmailCode description: The sent email code image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Constructor: account.sentEmailCode [Back to constructors index](index.md) The sent email code ### Attributes: | Name | Type | Required | Description | |----------|---------------|----------|-------------| |email\_pattern|[string](../types/string.md) | Yes|The email (to which the code was sent) must match this [pattern](https://core.telegram.org/api/pattern)| |length|[int](../types/int.md) | Yes|The length of the verification code| ### Type: [account\_SentEmailCode](../types/account_SentEmailCode.md) ### Example: ```php $account_sentEmailCode = ['_' => 'account.sentEmailCode', 'email_pattern' => 'string', 'length' => int]; ``` Or, if you're into Lua: ```lua account_sentEmailCode={_='account.sentEmailCode', email_pattern='string', length=int} ```