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