feature: email service and configuration

This commit is contained in:
Gary Sharp
2021-01-10 13:57:25 +11:00
parent af4a94870e
commit 806aadd161
14 changed files with 1229 additions and 186 deletions
@@ -0,0 +1,8 @@
namespace Disco.Models.Services.Messaging
{
public class EmailAttachment
{
public string Name { get; set; }
public byte[] Data { get; set; }
}
}