2017-05-30 17:19:46 -04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Bit.Core.Models.Mail
|
|
|
|
|
|
{
|
|
|
|
|
|
public class MailMessage
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Subject { get; set; }
|
|
|
|
|
|
public IEnumerable<string> ToEmails { get; set; }
|
2018-05-11 08:29:23 -04:00
|
|
|
|
public IEnumerable<string> BccEmails { get; set; }
|
2017-05-30 17:19:46 -04:00
|
|
|
|
public string HtmlContent { get; set; }
|
|
|
|
|
|
public string TextContent { get; set; }
|
2019-03-13 16:19:00 -04:00
|
|
|
|
public string Category { get; set; }
|
2017-05-30 17:19:46 -04:00
|
|
|
|
public IDictionary<string, object> MetaData { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|