pub struct Message {
pub subject: String,
pub body: MessageBody,
pub to_recipients: Vec<Recipient>,
pub cc_recipients: Vec<Recipient>,
pub bcc_recipients: Vec<Recipient>,
pub attachments: Option<Vec<FileAttachment>>,
}Expand description
Message payload for sendMail.
Fields§
§subject: StringSubject line.
body: MessageBodyBody (text or HTML).
to_recipients: Vec<Recipient>To recipients.
cc_recipients: Vec<Recipient>CC recipients (optional; omitted if empty).
bcc_recipients: Vec<Recipient>BCC recipients (optional; omitted if empty).
attachments: Option<Vec<FileAttachment>>Optional file attachments.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Message
impl<'de> Deserialize<'de> for Message
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Message
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnsafeUnpin for Message
impl UnwindSafe for Message
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more