From 44c1805f702f59d715cb161331b1e1b43a1fc177 Mon Sep 17 00:00:00 2001 From: maliming Date: Tue, 3 Oct 2023 02:15:44 -0500 Subject: [PATCH] Update SmtpEmailSender.cs --- .../Volo.Abp.Emailing/Volo/Abp/Emailing/Smtp/SmtpEmailSender.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/src/Volo.Abp.Emailing/Volo/Abp/Emailing/Smtp/SmtpEmailSender.cs b/framework/src/Volo.Abp.Emailing/Volo/Abp/Emailing/Smtp/SmtpEmailSender.cs index c9ca9cdc7a..62550c41f7 100644 --- a/framework/src/Volo.Abp.Emailing/Volo/Abp/Emailing/Smtp/SmtpEmailSender.cs +++ b/framework/src/Volo.Abp.Emailing/Volo/Abp/Emailing/Smtp/SmtpEmailSender.cs @@ -73,7 +73,7 @@ public class SmtpEmailSender : EmailSenderBase, ISmtpEmailSender, ITransientDepe using (var smtpClient = await BuildClientAsync()) { Logger.LogWarning("We don't recommend that you use the SmtpClient class for new development because SmtpClient doesn't support many modern protocols. " + - "Use MailKit(https://github.com/jstedfast/MailKit) or other libraries instead." + + "Use MailKit(https://docs.abp.io/en/abp/latest/MailKit) or other libraries instead." + "For more information, see https://github.com/dotnet/platform-compat/blob/master/docs/DE0005.md"); await smtpClient.SendMailAsync(mail);