Skip to main content

EmailMessage

Namespace: Wisej.Hybrid.Shared.Communication

Assembly: Wisej.Hybrid

Represents a single email message.

public class EmailMessage

Constructors​

Instance memberEmailMessage()​

Initializes a new instance of the EmailMessage class.

Instance memberEmailMessage(subject, body, to)​

Initializes a new instance of the EmailMessage class with the specified subject, body, and recipients.

NameTypeDescription
subjectStringThe email subject.
bodyStringThe email body.
toString[]The email recipients.

Properties​

Instance memberBcc​

List<String>: Gets or sets the email's BCC (Blind Carbon Copy) recipients.

Instance memberBody​

String: Gets or sets the email's body.

Instance memberBodyFormat​

EmailBodyFormat: Gets or sets a value indicating whether the message is in plain text or HTML.

Html is not supported on Windows.

Instance memberCc​

List<String>: Gets or sets the email's CC (Carbon Copy) recipients.

Instance memberSubject​

String: Gets or sets the email's subject.

Instance memberTo​

List<String>: Gets or sets the email's recipients.