MadelineProtoDocs/docs/API_docs/methods/account_setContactSignUpNot...

1.1 KiB

title description image
account.setContactSignUpNotification Set contact sign up notification https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Method: account.setContactSignUpNotification

Back to methods index

Set contact sign up notification

Parameters:

Name Type Description Required
silent Bool Silent? Yes

Return type: Bool

Can bots use this method: YES

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();

$Bool = $MadelineProto->account->setContactSignUpNotification(['silent' => Bool, ]);

Or, if you're into Lua:

Bool = account.setContactSignUpNotification({silent=Bool, })