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,17 @@
using System;
namespace Massmailer.Shared.Events
{
public class MailSentEvent
{
public MailSentEvent(string recipient, DateTime timestamp)
{
this.Recipient = recipient;
this.Timestamp = timestamp;
}
public string Recipient { get; private set; }
public DateTime Timestamp { get; private set; }
}
}