- Remove address and contact number - Add link to email - change twitter logo to x - link x logo to company twitter account Add new template to inform password change success - add code to send email on password change success
11 lines
424 B
C#
11 lines
424 B
C#
namespace MarcoBMS.Services.Service
|
|
{
|
|
public interface IEmailSender
|
|
{
|
|
Task SendResetPasswordEmail(string toEmail, string userName, string resetLink);
|
|
Task SendResetPasswordEmailOnRegister(string toEmail, string toName, string resetLink);
|
|
Task SendResetPasswordSuccessEmail(string toEmail, string userName);
|
|
Task SendEmailAsync(string toEmail, string subject, string body);
|
|
}
|
|
}
|