yavsc/src/Yavsc.Server/Services/MailSender.cs

114 lines
4.2 KiB
C#
Raw Normal View History

using System.Net;
using MailKit.Net.Smtp;
using MailKit.Security;
using Microsoft.Extensions.Logging;
2023-03-19 17:57:55 +00:00
using Microsoft.Extensions.Options;
using MimeKit;
2025-03-02 16:53:36 +00:00
using Microsoft.AspNetCore.Identity;
2023-04-05 22:29:40 +01:00
using Yavsc.Interface;
using Yavsc.Settings;
2025-03-02 16:53:36 +00:00
using Yavsc.Models;
using Microsoft.AspNetCore.Identity.UI.Services;
using Microsoft.Extensions.Localization;
using System.Web;
namespace Yavsc.Services
{
2025-03-02 16:53:36 +00:00
public class MailSender : IEmailSender<ApplicationUser>, IEmailSender, ITrueEmailSender
{
2025-03-02 16:53:36 +00:00
private readonly IStringLocalizer<YavscLocalization> localizer;
2020-09-12 01:11:30 +01:00
readonly SiteSettings siteSettings;
readonly SmtpSettings smtpSettings;
2023-03-19 16:02:50 +00:00
private readonly ILogger logger;
public MailSender(
IOptions<SiteSettings> sitesOptions,
2023-03-19 16:02:50 +00:00
IOptions<SmtpSettings> smtpOptions,
2025-07-07 07:49:18 +01:00
ILoggerFactory loggerFactory
)
{
2025-03-02 16:53:36 +00:00
this.localizer = localizer;
2023-04-05 22:29:40 +01:00
siteSettings = sitesOptions.Value;
smtpSettings = smtpOptions.Value;
2023-03-19 16:02:50 +00:00
logger = loggerFactory.CreateLogger<MailSender>();
}
2025-03-02 16:53:36 +00:00
public Task SendConfirmationLinkAsync(ApplicationUser user, string email, string confirmationLink)
{
throw new NotImplementedException();
}
/// <summary>
///
/// </summary>
/// <param name="googleSettings"></param>
/// <param name="registrationId"></param>
/// <param name="ev"></param>
/// <returns>a MessageWithPayloadResponse,
/// <c>bool somethingsent = (response.failure == 0 &amp;&amp; response.success > 0)</c>
/// </returns>
2025-03-02 16:53:36 +00:00
2023-04-05 22:29:40 +01:00
public async Task SendEmailAsync(string email, string subject, string htmlMessage)
{
2023-04-05 22:29:40 +01:00
await SendEmailAsync("", email, subject, htmlMessage);
}
public async Task<string> SendEmailAsync(string name, string email, string subject, string htmlMessage)
{
logger.LogInformation($"SendEmail for {email} : {subject}");
MimeMessage msg = new ();
msg.From.Add(new MailboxAddress(siteSettings.Owner.Name,
siteSettings.Owner.EMail));
msg.To.Add(new MailboxAddress(name, email));
msg.Body = new TextPart("html")
{
2023-04-05 22:29:40 +01:00
Text = htmlMessage
};
msg.Subject = subject;
msg.MessageId = MimeKit.Utils.MimeUtils.GenerateMessageId(
siteSettings.Authority
);
using (SmtpClient sc = new ())
{
2023-04-05 22:29:40 +01:00
sc.Connect(
smtpSettings.Server,
smtpSettings.Port,
SecureSocketOptions.Auto);
if (smtpSettings.UserName!=null) {
NetworkCredential creds = new (
smtpSettings.UserName, smtpSettings.Password);
await sc.AuthenticateAsync(System.Text.Encoding.UTF8, creds, System.Threading.CancellationToken.None);
}
await sc.SendAsync(msg);
logger.LogInformation($"Sent : {msg.MessageId}");
}
2023-04-05 22:29:40 +01:00
return msg.MessageId;
}
2025-03-02 16:53:36 +00:00
2025-07-16 00:47:50 +01:00
public void SendEmailFromCriteria(string Criteria)
{
throw new NotImplementedException();
}
2025-03-02 16:53:36 +00:00
public async Task SendPasswordResetCodeAsync(ApplicationUser user, string email, string resetCode)
{
var callbackUrl = siteSettings.Audience + "/Account/ResetPassword/" +
HttpUtility.UrlEncode(user.Id) + "/" + HttpUtility.UrlEncode(resetCode);
await SendEmailAsync(user.UserName, user.Email,
localizer["Reset Password"],
localizer["Please reset your password by "] + " <a href=\"" +
callbackUrl + "\" >following this link</a>");
throw new NotImplementedException();
}
public async Task SendPasswordResetLinkAsync(ApplicationUser user, string email, string resetLink)
{
await SendEmailAsync(user.UserName, user.Email,
localizer["Reset Password"],
localizer["Please reset your password by "] + " <a href=\"" +
resetLink + "\" >following this link</a>");
}
}
}