feature: add reply-to address for email service

This commit is contained in:
Gary Sharp
2021-02-05 15:24:20 +11:00
parent f7fdfb0c8a
commit e11d0871c4
7 changed files with 112 additions and 34 deletions
+1
View File
@@ -5,6 +5,7 @@ namespace Disco.Models.Services.Messaging
public class Email
{
public string From { get; set; }
public string ReplyTo { get; set; }
public List<string> To { get; } = new List<string>();
public List<string> CC { get; } = new List<string>();
public List<string> BCC { get; } = new List<string>();