MadelineProtoDocs/old_docs/API_docs_v82/methods/account.sendVerifyEmailCode.md

1.3 KiB

title description image redirect_from
account.sendVerifyEmailCode Send the verification email code for telegram [passport](https://core.telegram.org/passport). https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/methods/account_sendVerifyEmailCode.html

Method: account.sendVerifyEmailCode

Back to methods index

Send the verification email code for telegram passport.

Parameters:

Name Type Description Required
email string The email where to send the code Yes

Return type: account.SentEmailCode

Can bots use this method: NO

MadelineProto Example (now async for huge speed and parallelism!):

if (!file_exists('madeline.php')) {
    copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';

$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();

$account.SentEmailCode = $MadelineProto->account->sendVerifyEmailCode(['email' => 'string', ]);

Or, if you're into Lua:

account.SentEmailCode = account.sendVerifyEmailCode({email='string', })