Class AmazonSesInvitationDeliveryMessage
เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน
Namespace: Cephalon.MultiTenancy.Governance.AmazonSesDelivery.Services
Assembly: Cephalon.MultiTenancy.Governance.AmazonSesDelivery.dll
Describes a prepared Amazon SES invitation delivery message.
public sealed class AmazonSesInvitationDeliveryMessageInheritance
Section titled “Inheritance”object ← AmazonSesInvitationDeliveryMessage
Inherited Members
Section titled “Inherited Members”object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()
Constructors
Section titled “Constructors”AmazonSesInvitationDeliveryMessage(string, string, string, string, string, string?, IReadOnlyList<string>?, IReadOnlyDictionary<string, string>?, string?)
Section titled “ AmazonSesInvitationDeliveryMessage(string, string, string, string, string, string?, IReadOnlyList<string>?, IReadOnlyDictionary<string, string>?, string?)”Creates a prepared Amazon SES invitation delivery message.
public AmazonSesInvitationDeliveryMessage(string messageId, string from, string toEmail, string subject, string textBody, string? htmlBody = null, IReadOnlyList<string>? replyToAddresses = null, IReadOnlyDictionary<string, string>? tags = null, string? configurationSetName = null)Parameters
Section titled “Parameters”messageId string
The deterministic Cephalon message identifier carried in Amazon SES message tags.
from string
The formatted sender address.
toEmail string
The recipient email address.
subject string
The message subject.
textBody string
The plain-text message body.
htmlBody string?
The optional HTML message body.
replyToAddresses IReadOnlyList<string>?
Reply-to addresses attached to the message.
tags IReadOnlyDictionary<string, string>?
Amazon SES message tags attached to the message.
configurationSetName string?
The optional SES configuration set name attached to the request.
Properties
Section titled “Properties”ConfigurationSetName
Section titled “ ConfigurationSetName”Gets the optional SES configuration set name attached to the request.
public string? ConfigurationSetName { get; }Property Value
Section titled “Property Value”Gets the formatted sender address.
public string From { get; }Property Value
Section titled “Property Value”HasHtmlBody
Section titled “ HasHtmlBody”Gets a value indicating whether the message has an HTML body.
public bool HasHtmlBody { get; }Property Value
Section titled “Property Value”HtmlBody
Section titled “ HtmlBody”Gets the optional HTML message body.
public string? HtmlBody { get; }Property Value
Section titled “Property Value”MessageId
Section titled “ MessageId”Gets the deterministic Cephalon message identifier carried in Amazon SES message tags.
public string MessageId { get; }Property Value
Section titled “Property Value”ReplyToAddresses
Section titled “ ReplyToAddresses”Gets reply-to addresses attached to the message.
public IReadOnlyList<string> ReplyToAddresses { get; }Property Value
Section titled “Property Value”Subject
Section titled “ Subject”Gets the message subject.
public string Subject { get; }Property Value
Section titled “Property Value”Gets Amazon SES message tags attached to the message.
public IReadOnlyDictionary<string, string> Tags { get; }Property Value
Section titled “Property Value”IReadOnlyDictionary<string, string>
TextBody
Section titled “ TextBody”Gets the plain-text message body.
public string TextBody { get; }Property Value
Section titled “Property Value”ToEmail
Section titled “ ToEmail”Gets the recipient email address.
public string ToEmail { get; }