Files
mixtape/zero/Mails/MailOptions.cs
T
2024-10-29 14:07:23 +01:00

21 lines
389 B
C#

namespace zero.Mails;
public class MailOptions
{
//public string Host { get; set; }
//public int Port { get; set; }
//public string Username { get; set; }
//public string Password { get; set; }
//public string To { get; set; }
public string SenderEmail { get; set; }
public string SenderName { get; set; }
public Func<Mail, string> BuildViewPath { get; set; }
}