mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 18:14:01 +00:00
73 lines
1.9 KiB
C#
73 lines
1.9 KiB
C#
using Domain.Entities;
|
|
using Infrastructure.Email;
|
|
using Infrastructure.Email.Templates.Rendering;
|
|
|
|
namespace Service.Emails;
|
|
|
|
public interface IEmailService
|
|
{
|
|
public Task SendRegistrationEmailAsync(
|
|
UserAccount createdUser,
|
|
string confirmationToken
|
|
);
|
|
|
|
public Task SendResendConfirmationEmailAsync(
|
|
UserAccount user,
|
|
string confirmationToken
|
|
);
|
|
}
|
|
|
|
public class EmailService(
|
|
IEmailProvider emailProvider,
|
|
IEmailTemplateProvider emailTemplateProvider
|
|
) : IEmailService
|
|
{
|
|
private static readonly string WebsiteBaseUrl =
|
|
Environment.GetEnvironmentVariable("WEBSITE_BASE_URL")
|
|
?? throw new InvalidOperationException("WEBSITE_BASE_URL environment variable is not set");
|
|
|
|
public async Task SendRegistrationEmailAsync(
|
|
UserAccount createdUser,
|
|
string confirmationToken
|
|
)
|
|
{
|
|
var confirmationLink =
|
|
$"{WebsiteBaseUrl}/users/confirm?token={confirmationToken}";
|
|
|
|
var emailHtml =
|
|
await emailTemplateProvider.RenderUserRegisteredEmailAsync(
|
|
createdUser.FirstName,
|
|
confirmationLink
|
|
);
|
|
|
|
await emailProvider.SendAsync(
|
|
createdUser.Email,
|
|
"Welcome to The Biergarten App!",
|
|
emailHtml,
|
|
isHtml: true
|
|
);
|
|
}
|
|
|
|
public async Task SendResendConfirmationEmailAsync(
|
|
UserAccount user,
|
|
string confirmationToken
|
|
)
|
|
{
|
|
var confirmationLink =
|
|
$"{WebsiteBaseUrl}/users/confirm?token={confirmationToken}";
|
|
|
|
var emailHtml =
|
|
await emailTemplateProvider.RenderResendConfirmationEmailAsync(
|
|
user.FirstName,
|
|
confirmationLink
|
|
);
|
|
|
|
await emailProvider.SendAsync(
|
|
user.Email,
|
|
"Confirm Your Email - The Biergarten App",
|
|
emailHtml,
|
|
isHtml: true
|
|
);
|
|
}
|
|
}
|