pub struct EmailFrom {
pub email_address_id: String,
pub name: Option<String>,
}Expand description
from block for Email.
Major gotcha: email_address_id is NOT an email — it is the
numeric/string id ClickSend assigns after you register and verify a sender
address in the dashboard. Plug in "hello@you.com" and it will be rejected.
Fields§
§email_address_id: StringClickSend’s id for a verified sender (NOT an email).
name: Option<String>Display name shown in the recipient’s inbox.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EmailFrom
impl RefUnwindSafe for EmailFrom
impl Send for EmailFrom
impl Sync for EmailFrom
impl Unpin for EmailFrom
impl UnsafeUnpin for EmailFrom
impl UnwindSafe for EmailFrom
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