init SendMailHandler to read tempalte and replace placeholders

This commit is contained in:
2025-09-03 17:46:24 +02:00
parent 954d665ac3
commit 5ccd1fee26
5 changed files with 81 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ using EnvelopeGenerator.Domain.Constants;
namespace EnvelopeGenerator.Infrastructure.Repositories;
[Obsolete("Use Repository")]
[Obsolete("Use TempRepo")]
public class EnvelopeReceiverRepository : CRUDRepository<EnvelopeReceiver, (int Envelope, int Receiver), EGDbContext>, IEnvelopeReceiverRepository
{
public EnvelopeReceiverRepository(EGDbContext dbContext) : base(dbContext, dbContext.EnvelopeReceivers)