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
+11
View File
@@ -0,0 +1,11 @@
namespace Infrastructure;
public class SmtpSettings
{
public string Host { get; set; }
public int Port { get; set; }
public string From { get; set; }
public bool EnableSSL { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
}