2016-10-21 17:46:08 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Orchard.Email.Models {
|
2013-12-13 09:47:49 +08:00
|
|
|
|
public class EmailMessage {
|
|
|
|
|
public string Subject { get; set; }
|
|
|
|
|
public string Body { get; set; }
|
2014-01-15 03:39:01 +08:00
|
|
|
|
public string Recipients { get; set; }
|
2014-11-14 04:56:32 +08:00
|
|
|
|
public string ReplyTo { get; set; }
|
2015-02-28 07:05:54 +08:00
|
|
|
|
public string From { get; set; }
|
2014-12-07 04:08:54 +08:00
|
|
|
|
public string Bcc { get; set; }
|
2015-02-28 07:05:54 +08:00
|
|
|
|
public string Cc { get; set; }
|
2016-10-21 17:46:08 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// IEnumerable of strings representing attachments paths
|
|
|
|
|
/// </summary>
|
|
|
|
|
public IEnumerable<string> Attachments { get; set; }
|
2013-12-13 09:47:49 +08:00
|
|
|
|
}
|
|
|
|
|
}
|