1 implementation of SendEmailAsync
Microsoft.AspNetCore.Identity (1)
NoOpEmailSender.cs (1)
17
public Task
SendEmailAsync
(string email, string subject, string htmlMessage) => Task.CompletedTask;
6 references to SendEmailAsync
Microsoft.AspNetCore.Identity (3)
src\aspnetcore\src\Shared\DefaultMessageEmailSender.cs (3)
13
emailSender.
SendEmailAsync
(email, "Confirm your email", $"Please confirm your account by <a href='{confirmationLink}'>clicking here</a>. If you didn't request this email confirmation, you can ignore this email.");
16
emailSender.
SendEmailAsync
(email, "Reset your password", $"Please reset your password by <a href='{resetLink}'>clicking here</a>. If you didn't request a password reset, you can ignore this email.");
19
emailSender.
SendEmailAsync
(email, "Reset your password", $"Please reset your password using the following code: {resetCode}. If you didn't request a password reset, you can ignore this email.");
Microsoft.AspNetCore.Identity.UI (3)
src\aspnetcore\src\Shared\DefaultMessageEmailSender.cs (3)
13
emailSender.
SendEmailAsync
(email, "Confirm your email", $"Please confirm your account by <a href='{confirmationLink}'>clicking here</a>. If you didn't request this email confirmation, you can ignore this email.");
16
emailSender.
SendEmailAsync
(email, "Reset your password", $"Please reset your password by <a href='{resetLink}'>clicking here</a>. If you didn't request a password reset, you can ignore this email.");
19
emailSender.
SendEmailAsync
(email, "Reset your password", $"Please reset your password using the following code: {resetCode}. If you didn't request a password reset, you can ignore this email.");