EmailProfilerDispatcher hinzugefügt und EnvelopeMailService erstellt.

This commit is contained in:
Developer 02
2024-05-22 09:54:49 +02:00
parent bc6972bcfb
commit 86bdb233c2
12 changed files with 47 additions and 170 deletions

View File

@@ -1,25 +0,0 @@
namespace EnvelopeGenerator.Application.DTOs
{
public record EmailOutDto(
int Guid,
int ReminderTypeId,
int SendingProfile,
int ReferenceId,
string? ReferenceString,
int? EntityId,
int WfId,
string? WfReference,
string EmailAdress,
string EmailSubj,
string EmailBody,
string? EmailAttmt1,
DateTime? EmailSent,
string? Comment,
string AddedWho,
DateTime? AddedWhen,
string? ChangedWho,
DateTime? ChangedWhen,
DateTime? ErrorTimestamp,
string? ErrorMsg
);
}