2016-12-30 16:32:25 +01:00
---
2017-01-19 23:02:27 +01:00
title: messages.sendMessage
description: messages.sendMessage parameters, return type and example
2016-12-30 16:32:25 +01:00
---
2017-01-19 23:02:27 +01:00
## Method: messages.sendMessage
2016-12-30 16:32:25 +01:00
[Back to methods index ](index.md )
### Parameters:
| Name | Type | Required |
2017-08-20 11:05:56 +02:00
|----------|---------------|----------|
2017-03-11 19:54:51 +01:00
|peer|[InputPeer](../types/InputPeer.md) | Yes|
|message|[string](../types/string.md) | Yes|
2016-12-30 16:32:25 +01:00
Added docs for layer 18, 23, 25, 27, 33, 38, 40, 41, 42, 44, 45, 46, 51, 53, 55
2017-01-02 21:04:36 +01:00
### Return type: [messages\_SentMessage](../types/messages_SentMessage.md)
2016-12-30 16:32:25 +01:00
2017-08-28 12:44:50 +02:00
### Can bots use this method: **YES**
### Errors this method can return:
| Error | Description |
|----------|---------------|
|CHANNEL_INVALID|The provided channel is invalid||CHANNEL_PRIVATE|You haven't joined this channel/supergroup||CHAT_ADMIN_REQUIRED|You must be an admin in this chat to do this||CHAT_WRITE_FORBIDDEN|You can't write in this chat||MESSAGE_EMPTY|The provided message is empty||PEER_ID_INVALID|The provided peer id is invalid||USER_BANNED_IN_CHANNEL|You're banned from sending messages in supergroups/channels||USER_IS_BLOCKED|User is blocked||USER_IS_BOT|Bots can't send messages to other bots||YOU_BLOCKED_USER|You blocked this user|
2016-12-30 16:32:25 +01:00
### Example:
```
$MadelineProto = new \danog\MadelineProto\API();
2017-04-10 13:49:32 +02:00
if (isset($token)) { // Login as a bot
2017-06-19 18:56:47 +02:00
$MadelineProto->bot_login($token);
2016-12-30 16:32:25 +01:00
}
2017-04-10 13:49:32 +02:00
if (isset($number)) { // Login as a user
2016-12-30 16:32:25 +01:00
$sentCode = $MadelineProto->phone_login($number);
echo 'Enter the code you received: ';
$code = '';
for ($x = 0; $x < $sentCode['type']['length']; $x++) {
$code .= fgetc(STDIN);
}
$MadelineProto->complete_phone_login($code);
}
2017-07-23 16:33:46 +02:00
$messages_SentMessage = $MadelineProto->messages->sendMessage(['peer' => InputPeer, 'message' => 'string', ]);
2017-02-13 04:33:06 +01:00
```
2017-03-11 19:54:51 +01:00
2017-07-24 01:32:29 +02:00
Or, if you're using the [PWRTelegram HTTP API ](https://pwrtelegram.xyz ):
2017-07-23 16:11:02 +02:00
### As a bot:
POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - messages.sendMessage
2017-07-23 16:40:54 +02:00
* params - `{"peer": InputPeer, "message": "string", }`
2017-07-23 16:11:02 +02:00
2017-07-23 16:34:36 +02:00
2017-07-23 16:11:02 +02:00
### As a user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/messages.sendMessage`
Parameters:
peer - Json encoded InputPeer
2017-08-20 19:09:52 +02:00
2017-07-23 16:11:02 +02:00
message - Json encoded string
2017-07-23 16:40:54 +02:00
2017-07-23 16:11:02 +02:00
2017-08-20 19:09:52 +02:00
2017-03-11 19:54:51 +01:00
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
messages_SentMessage = messages.sendMessage({peer=InputPeer, message='string', })
2017-03-11 19:54:51 +01:00
```
2017-04-21 13:13:24 +02:00
## 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 [messages\_SentMessage ](../types/messages_SentMessage.md ) will be returned instead.