Files
FACULTATE-HEALTHCARE_MANAGER/backend/Application/Services/Email/IEmailService.cs
T
2024-05-30 15:40:13 +03:00

12 lines
584 B
C#

namespace Application.Services.Email;
public interface IEmailService
{
Task SendEmailAsync(string to, string subject, string body);
string GenerateCredentialsEmailBody(string name, string email, string password);
string GenerateResetCredentialsEmailBody(string name, string email, string password);
public string GenerateMessageNotificationEmail(string senderName, string receiverName, string chatUrl);
public string GetSuccessfulRegistrationSubject();
public string GetSuccessfulPasswordResetSubject();
public string GetMessageNotificationSubject();
}