Sending mails works

This commit is contained in:
2021-02-04 22:18:03 +01:00
parent 745b6d22a9
commit e5098c02d9
12 changed files with 207 additions and 51 deletions

View File

@@ -0,0 +1,13 @@
using System.Collections.Generic;
namespace Massmailer.Shared.Model
{
public class MassmailProject
{
public List<MassmailRecipient> Recipient { get; set; }
public string Subject { get; set; }
public string Body { get; set; }
}
}

View File

@@ -0,0 +1,13 @@
using System;
namespace Massmailer.Shared.Model
{
public class MassmailRecipient
{
public string Recipient { get; set; }
public bool IsSent { get; set; }
public DateTime SentDate { get; set; }
}
}

View File

@@ -21,5 +21,7 @@ namespace Massmailer.Shared.Model
public string Password { get; set; }
public bool UseSsl { get; set; }
public int MaxSendRate { get; set; }
}
}