mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
17 lines
578 B
C#
17 lines
578 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Orchard.Email.Models {
|
|
public class EmailMessage {
|
|
public string Subject { get; set; }
|
|
public string Body { get; set; }
|
|
public string Recipients { get; set; }
|
|
public string ReplyTo { get; set; }
|
|
public string From { get; set; }
|
|
public string Bcc { get; set; }
|
|
public string Cc { get; set; }
|
|
/// <summary>
|
|
/// IEnumerable of strings representing attachments paths
|
|
/// </summary>
|
|
public IEnumerable<string> Attachments { get; set; }
|
|
}
|
|
} |