Foxnouns.NET/Foxnouns.Backend/Services/MailService.cs

31 lines
956 B
C#
Raw Normal View History

using Coravel.Mailer.Mail.Interfaces;
using Coravel.Queuing.Interfaces;
using Foxnouns.Backend.Mailables;
namespace Foxnouns.Backend.Services;
public class MailService(ILogger logger, IMailer mailer, IQueue queue, Config config)
{
private readonly ILogger _logger = logger.ForContext<MailService>();
public void QueueAccountCreationEmail(string to, string code)
{
queue.QueueAsyncTask(async () =>
{
2024-09-10 02:39:07 +02:00
_logger.Debug("Sending account creation email to {ToEmail}", to);
try
{
2024-09-10 02:39:07 +02:00
await mailer.SendAsync(new AccountCreationMailable(config, new AccountCreationMailableView
{
BaseUrl = config.BaseUrl,
To = to,
Code = code
}));
}
catch (Exception exc)
{
_logger.Error(exc, "Sending account creation email");
}
});
}
}