feat(EnvelopeMailService): SendTFAQrCodeAsync als Schnittstellenimplementierung zum Senden von QR-Code-E-Mails hinzugefügt.

This commit is contained in:
Developer 02
2024-12-11 12:53:45 +01:00
parent 6dfdd48ec0
commit 31e647d3e5
2 changed files with 25 additions and 4 deletions

View File

@@ -13,5 +13,7 @@ namespace EnvelopeGenerator.Application.Contracts
Task<DataResult<int>> SendAsync(EnvelopeReceiverReadOnlyDto dto, Dictionary<string, object>? optionalPlaceholders = null);
Task<DataResult<int>> SendAccessCodeAsync(EnvelopeReceiverDto envelopeReceiverDto);
Task<DataResult<int>> SendTFAQrCodeAsync(EnvelopeReceiverDto envelopeReceiverDto);
}
}