Function xmpp::message::send::send_message

source ·
pub async fn send_message<C: ServerConnector>(
    agent: &mut Agent<C>,
    recipient: Jid,
    type_: MessageType,
    lang: &str,
    text: &str,
) -> Result<String, Error>
Expand description

Send a message to a given recipient.

Returns the generated message ID.

§Arguments

  • agent: The agent to use to send the message.
  • recipient: The JID of the recipient.
  • type_: The type of message to send. For a message to a MUC room, this should be MessageType::Groupchat. For a private message to a MUC room member or regular contact, this should be MessageType::Chat.
  • lang: The language of the message. (See IETF RFC 5646)
  • text: The text of the message.

Returns the generated message ID, or an error if the message could not be sent.