Send a message in an open channel
A user can send messages of the following types once they enter the channel:
Message type | Class | Description |
---|---|---|
Text | A text message sent by a user | |
File | A binary file message sent by a user |
You can further subclassify a message by specifying its custom type in addition to the message types listed above. This custom type takes on the form of a std::wstring
and can be used to search or filter messages. It allows you to append information to your message and customize message categorization.
The following code shows several types of parameters that you can configure to customize text messages by using SBDUserMessageParams
. Under the SBDUserMessageParams
object, you can assign specific values to message
, data
and other properties. By assigning arbitrary string to the data
property, you can set custom font size, font type or JSON
object. To send your messages, you need to pass the SBDUserMessageParams
object as an argument to the parameter in the SendUserMessage()
method.
Through the handler callback function of the SendUserMessage()
method, the Sendbird server always notifies whether your message has been successfully sent to the channel. When there is a delivery failure due to network issues, an exception is returned through the callback method.
A user can also send binary files through the Chat SDK. The two ways to send a binary file are: sending the file itself, or sending a URL.
Sending a raw file means you're uploading it to the Sendbird server where it can be downloaded in client apps. When you upload a file directly to the server, there is a size limit imposed on the file depending on your plan. You can see the limit on your dashboard and adjust it with our sales team.
The other option is to send a file hosted on your server. You can pass the file's URL, which represents its location, as an argument to a parameter. In this case, your file is not hosted on the Sendbird server and it can only be downloaded from your own server. When you send a file message with a URL, there is no limit on the file size since it's not directly uploaded to the Sendbird server.
Note: Use
SendFileMessages()
which is another method that allows you to send up to 20 file messages per one method call.
The following code shows several types of parameters that you can configure to customize file messages by using SBDFileMessageParams
. Under the SBDFileMessageParams
object, you can assign specific values to custom_type
and other properties. To send your messages, you need to pass the SBDFileMessageParams
object as an argument to the parameter in the SendFileMessage()
method.
Through the handler callback function of the SendFileMessage()
method, the Sendbird server always notifies whether your message has been successfully sent to the channel. When there is a delivery failure due to network issues, an exception is returned through the callback method.