--- title: messages.sendBroadcast description: Send a message to all users in the chat list image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Method: messages.sendBroadcast [Back to methods index](index.md) Send a message to all users in the chat list ### Parameters: | Name | Type | Description | Required | |----------|---------------|-------------|----------| |contacts|Array of [Username, chat ID, Update, Message or InputUser](../types/InputUser.md) | The users to which send the message | Yes| |message|[string](../types/string.md) | The message | Yes| |media|[MessageMedia, Update, Message or InputMedia](../types/InputMedia.md) | The media | Optional| ### Return type: [Updates](../types/Updates.md) ### Can bots use this method: **YES** ### MadelineProto Example: ```php if (!file_exists('madeline.php')) { copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php'); } define('MADELINE_BRANCH', ''); include 'madeline.php'; $MadelineProto = new \danog\MadelineProto\API('session.madeline'); $MadelineProto->start(); $Updates = $MadelineProto->messages->sendBroadcast(['contacts' => [InputUser, InputUser], 'message' => 'string', 'media' => InputMedia, ]); ``` Or, if you're into Lua: ```lua Updates = messages.sendBroadcast({contacts={InputUser}, message='string', media=InputMedia, }) ``` ## Return value If the length of the provided message is bigger than 4096, the message will be split in chunks and the method will be called multiple times, with the same parameters (except for the message), and an array of [Updates](../types/Updates.md) will be returned instead.