serviciu email done

This commit is contained in:
andrei-mihnea-cerbu
2024-04-09 03:03:44 +03:00
parent 0d03c0ea43
commit 9977a9b5f5
63 changed files with 135 additions and 17 deletions
@@ -0,0 +1,7 @@
namespace Application.Services.Email;
public interface IEmailService
{
Task SendEmailAsync(string to, string subject, string body);
string GenerateCredentialsEmailBody(string email, string password);
}