[]
表示邮件信息
public class FgcMailMessage
表示邮件信息
public FgcMailMessage()
附件
public List<string> Attachments { get; set; }
类型 | 描述 |
---|---|
System.Collections.Generic.List<T><string> |
密送收件人的电子邮件地址。
public List<string> BCC { get; set; }
类型 | 描述 |
---|---|
System.Collections.Generic.List<T><string> |
抄送收件人的电子邮件地址。
public List<string> CC { get; set; }
类型 | 描述 |
---|---|
System.Collections.Generic.List<T><string> |
要发送的电子邮件正文。
public string Content { get; set; }
类型 | 描述 |
---|---|
string |
发件人的电子邮件地址。
public string From { get; set; }
类型 | 描述 |
---|---|
string |
邮件重要度(Low,Normal,High),默认值为Normal表示普通。Low表示重要度低,High表示重要度高
public string Priority { get; set; }
类型 | 描述 |
---|---|
string |
以纯文本格式发送邮件
public bool SendAsPlainText { get; set; }
类型 | 描述 |
---|---|
bool |
要发送的电子邮件标题。
public string Title { get; set; }
类型 | 描述 |
---|---|
string |
收件人的电子邮件地址。
public List<string> To { get; set; }
类型 | 描述 |
---|---|
System.Collections.Generic.List<T><string> |