Added email support

This commit is contained in:
Khwezi Mngoma
2026-05-04 21:14:22 +02:00
parent 97eec30f20
commit 47534ce671
6 changed files with 172 additions and 2 deletions
@@ -0,0 +1,8 @@
namespace LiteCharms.Models.Configuraton.Email;
public class Account
{
public string? Username { get; set; }
public string? Password { get; set; }
}
@@ -0,0 +1,12 @@
namespace LiteCharms.Models.Configuraton.Email;
public class SmtpSettings
{
public Account? Credentials { get; set; }
public int Port { get; set; }
public string? Host { get; set; }
public bool UseSsl { get; set; }
}