MadelineProtoDocs/docs/API_docs/constructors/securePlainEmail.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

45 lines
780 B
Markdown

---
title: securePlainEmail
description: Secure plain email
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: securePlainEmail
[Back to constructors index](index.md)
Secure plain email
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|email|[string](../types/string.md) | Yes|Email|
### Type: [SecurePlainData](../types/SecurePlainData.md)
### Example:
```php
$securePlainEmail = ['_' => 'securePlainEmail', 'email' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "securePlainEmail", "email": "string"}
```
Or, if you're into Lua:
```lua
securePlainEmail={_='securePlainEmail', email='string'}
```