Class EmailMessage

Definition

Namespace:
Tizen.Messaging.Email
Assembly:
Tizen.Messaging.dll
API Level:
3

This class contains the Messaging API to support sending email messages.

C#
Copy
public class EmailMessage : IDisposable
Inheritance
System.Object
EmailMessage
Implements
System.IDisposable

Constructors

View Source

EmailMessage()

The constructor.

Declaration
C#
Copy
public EmailMessage()
API Level: 3

Properties

View Source

Attachments

The list of file attachments.

Declaration
C#
Copy
public IList<EmailAttachment> Attachments { get; }
Property Value
Type Description
System.Collections.Generic.IList<EmailAttachment>
API Level: 3
View Source

Bcc

The collection of BCC (blind carbon copy) email recipients.

Declaration
C#
Copy
public ICollection<EmailRecipient> Bcc { get; }
Property Value
Type Description
System.Collections.Generic.ICollection<EmailRecipient>
Remarks

The email address should be in the standard format (as described in the Internet standards RFC 5321 and RFC 5322).

API Level: 3
View Source

Body

The body of the email message.

Declaration
C#
Copy
public string Body { get; set; }
Property Value
Type Description
System.String
API Level: 3
View Source

Cc

The collection of CC (carbon copy) email recipients.

Declaration
C#
Copy
public ICollection<EmailRecipient> Cc { get; }
Property Value
Type Description
System.Collections.Generic.ICollection<EmailRecipient>
Remarks

The email address should be in the standard format (as described in the Internet standards RFC 5321 and RFC 5322).

API Level: 3
View Source

Subject

The subject of the email message.

Declaration
C#
Copy
public string Subject { get; set; }
Property Value
Type Description
System.String
API Level: 3
View Source

To

The collection of normal email recipients.

Declaration
C#
Copy
public ICollection<EmailRecipient> To { get; }
Property Value
Type Description
System.Collections.Generic.ICollection<EmailRecipient>
Remarks

The email address should be in the standard format (as described in the Internet standards RFC 5321 and RFC 5322).

API Level: 3

Methods

View Source

Dispose()

Releases all resources used by the EmailMessage.

Declaration
C#
Copy
public void Dispose()
API Level: 3
View Source

Dispose(Boolean)

Releases all resources used by the EmailMessage.

Declaration
C#
Copy
protected virtual void Dispose(bool disposing)
Parameters
Type Name Description
Boolean disposing

Disposing by User

API Level: 3

Implements

System.IDisposable