Class MailInfo
Information about an email to be sent.
Inheritance
System.Object
MailInfo
Namespace: DotNetNuke.Services.Mail
Assembly: DotNetNuke.dll
Syntax
public class MailInfo : object
Properties
| Improve this Doc View SourceAttachments
Gets or sets mail attachments.
Declaration
public ICollection<MailAttachment> Attachments { get; set; }
Property Value
Type | Description |
---|---|
ICollection<MailAttachment> |
BCC
Gets or sets BCC email address.
Declaration
public string BCC { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Body
Gets or sets Body of email.
Declaration
public string Body { get; set; }
Property Value
Type | Description |
---|---|
System.String |
BodyEncoding
Gets or sets Body Encoding.
Declaration
public Encoding BodyEncoding { get; set; }
Property Value
Type | Description |
---|---|
Encoding |
BodyFormat
Gets or sets Body Format.
Declaration
public MailFormat BodyFormat { get; set; }
Property Value
Type | Description |
---|---|
MailFormat |
CC
Gets or sets CC email address.
Declaration
public string CC { get; set; }
Property Value
Type | Description |
---|---|
System.String |
From
Gets or sets From email address.
Declaration
public string From { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FromName
Gets or sets From Name.
Declaration
public string FromName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Priority
Gets or sets Priority.
Declaration
public MailPriority Priority { get; set; }
Property Value
Type | Description |
---|---|
MailPriority |
ReplyTo
Gets or sets Reply To email address.
Declaration
public string ReplyTo { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Sender
Gets or sets sender email address.
Declaration
public string Sender { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Subject
Gets or sets Subject of email.
Declaration
public string Subject { get; set; }
Property Value
Type | Description |
---|---|
System.String |
To
Gets or sets To email address.
Declaration
public string To { get; set; }
Property Value
Type | Description |
---|---|
System.String |