feat(EnvelopeMailService): Optionale Platzhalter als Wörterbuch hinzugefügt.

- Als Standard ist es null
This commit is contained in:
Developer 02
2024-12-11 12:14:10 +01:00
parent 535ca23c86
commit 85cacc822d
2 changed files with 15 additions and 4 deletions

View File

@@ -10,8 +10,8 @@ namespace EnvelopeGenerator.Application.Contracts
{
Task<DataResult<int>> SendAsync(EnvelopeReceiverDto envelopeReceiverDto, Constants.EmailTemplateType tempType);
Task<DataResult<int>> SendAsync(EnvelopeReceiverReadOnlyDto dto);
Task<DataResult<int>> SendAsync(EnvelopeReceiverReadOnlyDto dto, Dictionary<string, object>? optionalPlaceholders = null);
Task<DataResult<int>> SendAccessCodeAsync(EnvelopeReceiverDto envelopeReceiverDto);
Task<DataResult<int>> SendAccessCodeAsync(EnvelopeReceiverDto envelopeReceiverDto, Dictionary<string, object>? optionalPlaceholders = null);
}
}