Interface IPasswordChangedEmailSender
Provides an abstraction for a service that sends e-mails about that the user password has changed.
Namespace: IRM.AspNetCore.Identity.Mail
Assembly: IRM.AspNetCore.Identity.Mail.dll
Syntax
public interface IPasswordChangedEmailSender
Methods
SendAsync(PasswordChangedEmailViewModel)
Sends an e-mail message to a reciever about that the user password has changed.
Declaration
Task SendAsync(PasswordChangedEmailViewModel viewModel)
Parameters
PasswordChangedEmailViewModel
viewModel
The PasswordChangedEmailViewModel with information for creating the e-mails. |
Returns
System.Threading.Tasks.Task
The task object representing the asynchronous operation. |