2022-06-29 19:46:41 -04:00
|
|
|
|
namespace Bit.Core.Models.Mail;
|
2022-08-29 16:06:55 -04:00
|
|
|
|
|
2017-05-30 17:19:46 -04:00
|
|
|
|
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; }
|
|
|
|
|
|
}
|