initial commit

This commit is contained in:
2026-07-21 14:41:46 +07:00
commit 1bfa3dd1c2
1159 changed files with 88228 additions and 0 deletions
@@ -0,0 +1,21 @@
namespace Indotalent.Infrastructure.Email;
public class DefaultEmailSender : IEmailSender
{
private readonly ILogger<DefaultEmailSender> _logger;
public DefaultEmailSender(ILogger<DefaultEmailSender> logger)
{
_logger = logger;
}
public Task SendEmailAsync(string email, string subject, string htmlMessage)
{
_logger.LogWarning("Email sending requested but NO active email provider found in EmailSettings.");
_logger.LogInformation("To: {Email}", email);
_logger.LogInformation("Subject: {Subject}", subject);
_logger.LogInformation("Content: {Message}", htmlMessage);
return Task.CompletedTask;
}
}