pub struct BulkSend {
pub contact_list_id: String,
pub sender_address_id: String,
pub subject: String,
pub html: Option<String>,
pub text: Option<String>,
pub tags: Option<Vec<String>>,
}Expand description
Body for a templated bulk send. contact_list_id is injected by the SDK.
Fields§
§contact_list_id: StringThe list id (set automatically by the SDK).
sender_address_id: StringThe verified sender address id.
subject: StringSubject line (may use {{placeholders}}).
html: Option<String>HTML body.
text: Option<String>Plain-text body.
Tags.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BulkSend
impl RefUnwindSafe for BulkSend
impl Send for BulkSend
impl Sync for BulkSend
impl Unpin for BulkSend
impl UnsafeUnpin for BulkSend
impl UnwindSafe for BulkSend
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