mirror of
https://github.com/bitwarden/server
synced 2025-12-18 01:03:17 +00:00
New mail services and implementations
This commit is contained in:
13
src/Core/Models/Mail/MailMessage.cs
Normal file
13
src/Core/Models/Mail/MailMessage.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Bit.Core.Models.Mail
|
||||
{
|
||||
public class MailMessage
|
||||
{
|
||||
public string Subject { get; set; }
|
||||
public IEnumerable<string> ToEmails { get; set; }
|
||||
public string HtmlContent { get; set; }
|
||||
public string TextContent { get; set; }
|
||||
public IDictionary<string, object> MetaData { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user