add SendHTML method

This commit is contained in:
paulbdavis 2019-02-27 22:46:57 -07:00
parent 385f072fe9
commit d19b100769
1 changed files with 10 additions and 0 deletions

View File

@ -464,6 +464,16 @@ func (cli *Client) SendText(roomID, text string) (*RespSendEvent, error) {
TextMessage{"m.text", text})
}
// SendHTML sends an m.room.message event into the given room with a msgtype of m.text and using the org.matrix.custom.html formatting.
// See http://matrix.org/docs/spec/client_server/r0.2.0.html#m-text
func (cli *Client) SendHTML(roomID, msgtype, htmlText string) (*RespSendEvent, error) {
if msgtype == "" {
msgtype = "m.text"
}
return cli.SendMessageEvent(roomID, "m.room.message",
GetHTMLMessage(msgtype, htmlText))
}
// SendImage sends an m.room.message event into the given room with a msgtype of m.image
// See https://matrix.org/docs/spec/client_server/r0.2.0.html#m-image
func (cli *Client) SendImage(roomID, body, url string) (*RespSendEvent, error) {