A message to be send by a messaging service.
Default constructor
public Void Message()
A list of Attachments to be send with the message.
public List<Attachment> Attachments { get; set; }
Message body.
public String Body { get; set; }
Destination of the message.
public String Destination { get; set; }
Who is sending the message.
public String From { get; set; }
From display name.
public String FromName { get; set; }
Whether the body contains HTML.
public Boolean IsBodyHtml { get; set; }
Message subject.
public String Subject { get; set; }
In this document