pub struct SubscriptionTracking {
pub enable: bool,
pub html: String,
pub substitution_tag: String,
pub text: String,
}
Expand description
Allows you to insert a subscription management link at the bottom of the text and HTML bodies of your email. If you would like to specify the location of the link within your email, you may use the substitution_tag
.
Fields§
§enable: bool
Allows you to insert a subscription management link at the bottom of the text and HTML bodies of your email. If you would like to specify the location of the link within your email, you may use the substitution_tag
.
html: String
Allows you to insert a subscription management link at the bottom of the text and HTML bodies of your email. If you would like to specify the location of the link within your email, you may use the substitution_tag
.
substitution_tag: String
Allows you to insert a subscription management link at the bottom of the text and HTML bodies of your email. If you would like to specify the location of the link within your email, you may use the substitution_tag
.
text: String
Allows you to insert a subscription management link at the bottom of the text and HTML bodies of your email. If you would like to specify the location of the link within your email, you may use the substitution_tag
.
Trait Implementations§
Source§impl Clone for SubscriptionTracking
impl Clone for SubscriptionTracking
Source§fn clone(&self) -> SubscriptionTracking
fn clone(&self) -> SubscriptionTracking
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for SubscriptionTracking
impl Debug for SubscriptionTracking
Source§impl<'de> Deserialize<'de> for SubscriptionTracking
impl<'de> Deserialize<'de> for SubscriptionTracking
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 SubscriptionTracking
impl JsonSchema for SubscriptionTracking
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