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.
public class EmailMessage : IDisposable
- Inheritance
-
EmailMessage
- Implements
Constructors
View SourceEmailMessage()
The constructor.
Declaration
public EmailMessage()
API Level: 3
Properties
View SourceAttachments
The list of file attachments.
Declaration
public IList<EmailAttachment> Attachments { get; }
Property Value
Type | Description |
---|---|
IList<EmailAttachment> |
API Level: 3
View SourceBcc
The collection of BCC (blind carbon copy) email recipients.
Declaration
public ICollection<EmailRecipient> Bcc { get; }
Property Value
Type | Description |
---|---|
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 SourceBody
The body of the email message.
Declaration
public string Body { get; set; }
Property Value
Type | Description |
---|---|
String |
API Level: 3
View SourceCc
The collection of CC (carbon copy) email recipients.
Declaration
public ICollection<EmailRecipient> Cc { get; }
Property Value
Type | Description |
---|---|
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 SourceSubject
The subject of the email message.
Declaration
public string Subject { get; set; }
Property Value
Type | Description |
---|---|
String |
API Level: 3
View SourceTo
The collection of normal email recipients.
Declaration
public ICollection<EmailRecipient> To { get; }
Property Value
Type | Description |
---|---|
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 SourceDispose()
Releases all resources used by the EmailMessage.
Declaration
public void Dispose()
API Level: 3
View SourceDispose(Boolean)
Releases all resources used by the EmailMessage.
Declaration
protected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
Boolean | disposing | Disposing by User |