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

37 lines
1.1 KiB
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
{
await mailer.SendAsync(
new AccountCreationMailable(
config,
new AccountCreationMailableView
{
BaseUrl = config.BaseUrl,
To = to,
Code = code,
}
)
);
2024-09-10 02:39:07 +02:00
}
catch (Exception exc)
{
_logger.Error(exc, "Sending account creation email");
}
});
}
}