pub struct MailSettings {
pub bypass_bounce_management: Option<BypassBounceManagement>,
pub bypass_list_management: Option<BypassListManagement>,
pub bypass_spam_management: Option<BypassSpamManagement>,
pub bypass_unsubscribe_management: Option<BypassUnsubscribeManagement>,
pub footer: Option<Footer>,
pub sandbox_mode: Option<SandboxMode>,
}
Expand description
A collection of different mail settings that you can use to specify how you would like this email to be handled.
Fields§
§bypass_bounce_management: Option<BypassBounceManagement>
A collection of different mail settings that you can use to specify how you would like this email to be handled.
bypass_list_management: Option<BypassListManagement>
A collection of different mail settings that you can use to specify how you would like this email to be handled.
bypass_spam_management: Option<BypassSpamManagement>
A collection of different mail settings that you can use to specify how you would like this email to be handled.
bypass_unsubscribe_management: Option<BypassUnsubscribeManagement>
A collection of different mail settings that you can use to specify how you would like this email to be handled.
A collection of different mail settings that you can use to specify how you would like this email to be handled.
sandbox_mode: Option<SandboxMode>
A collection of different mail settings that you can use to specify how you would like this email to be handled.
Trait Implementations§
Source§impl Clone for MailSettings
impl Clone for MailSettings
Source§fn clone(&self) -> MailSettings
fn clone(&self) -> MailSettings
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for MailSettings
impl Debug for MailSettings
Source§impl<'de> Deserialize<'de> for MailSettings
impl<'de> Deserialize<'de> for MailSettings
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>,
Source§impl JsonSchema for MailSettings
impl JsonSchema for MailSettings
Source§fn schema_name() -> String
fn schema_name() -> String
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read more