ข้ามไปยังเนื้อหา

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 AmazonSesInvitationDeliveryMessage

objectAmazonSesInvitationDeliveryMessage

object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()

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)

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.

Gets the optional SES configuration set name attached to the request.

public string? ConfigurationSetName { get; }

string?

Gets the formatted sender address.

public string From { get; }

string

Gets a value indicating whether the message has an HTML body.

public bool HasHtmlBody { get; }

bool

Gets the optional HTML message body.

public string? HtmlBody { get; }

string?

Gets the deterministic Cephalon message identifier carried in Amazon SES message tags.

public string MessageId { get; }

string

Gets reply-to addresses attached to the message.

public IReadOnlyList<string> ReplyToAddresses { get; }

IReadOnlyList<string>

Gets the message subject.

public string Subject { get; }

string

Gets Amazon SES message tags attached to the message.

public IReadOnlyDictionary<string, string> Tags { get; }

IReadOnlyDictionary<string, string>

Gets the plain-text message body.

public string TextBody { get; }

string

Gets the recipient email address.

public string ToEmail { get; }

string