41 lines
999 B
Markdown
41 lines
999 B
Markdown
---
|
|
title: account.sentEmailCode
|
|
description: The sent email code
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
redirect_from: /API_docs/constructors/account_sentEmailCode.html
|
|
---
|
|
# 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}
|
|
|
|
```
|
|
|
|
|