4 implementations of SendEmailAsync
Identity.DefaultUI.WebSite (1)
Services\ContosoEmailSender.cs (1)
12public Task SendEmailAsync(string email, string subject, string htmlMessage)
Microsoft.AspNetCore.Identity (1)
NoOpEmailSender.cs (1)
17public Task SendEmailAsync(string email, string subject, string htmlMessage) => Task.CompletedTask;
Microsoft.AspNetCore.Identity.FunctionalTests (2)
MapIdentityApiTests.cs (1)
1514public Task SendEmailAsync(string email, string subject, string htmlMessage)
RegistrationTests.cs (1)
65public Task SendEmailAsync(string email, string subject, string htmlMessage)
7 references to SendEmailAsync
Microsoft.AspNetCore.Identity (3)
src\Shared\DefaultMessageEmailSender.cs (3)
13emailSender.SendEmailAsync(email, "Confirm your email", $"Please confirm your account by <a href='{confirmationLink}'>clicking here</a>."); 16emailSender.SendEmailAsync(email, "Reset your password", $"Please reset your password by <a href='{resetLink}'>clicking here</a>."); 19emailSender.SendEmailAsync(email, "Reset your password", $"Please reset your password using the following code: {resetCode}");
Microsoft.AspNetCore.Identity.FunctionalTests (1)
MapIdentityApiTests.cs (1)
1529emailSender.SendEmailAsync(email, "Custom subject", "Custom message");
Microsoft.AspNetCore.Identity.UI (3)
src\Shared\DefaultMessageEmailSender.cs (3)
13emailSender.SendEmailAsync(email, "Confirm your email", $"Please confirm your account by <a href='{confirmationLink}'>clicking here</a>."); 16emailSender.SendEmailAsync(email, "Reset your password", $"Please reset your password by <a href='{resetLink}'>clicking here</a>."); 19emailSender.SendEmailAsync(email, "Reset your password", $"Please reset your password using the following code: {resetCode}");