22 lines
442 B
C#
22 lines
442 B
C#
namespace Massmailer.Shared.Model
|
|
{
|
|
public class SmtpSettings
|
|
{
|
|
public string Server { get; set; }
|
|
|
|
public int Port { get; set; }
|
|
|
|
public string SenderName { get; set; }
|
|
|
|
public string SenderEmail { get; set; }
|
|
|
|
public string Username { get; set; }
|
|
|
|
public string Password { get; set; }
|
|
|
|
public bool UseSsl { get; set; }
|
|
|
|
public int MaxSendRate { get; set; }
|
|
}
|
|
}
|