37 lines
953 B
C#
37 lines
953 B
C#
using MailKit.Security;
|
|
|
|
namespace StockMan.Data
|
|
{
|
|
public class MailKitEmailSenderOptions
|
|
{
|
|
#region Public Constructors
|
|
|
|
public MailKitEmailSenderOptions()
|
|
{
|
|
Host_SecureSocketOptions = SecureSocketOptions.Auto;
|
|
Host_Address = "127.0.0.1";
|
|
Host_Password = "";
|
|
Host_Username = "";
|
|
Sender_EMail = "info@steamware.net";
|
|
Sender_Name = "Info Steamware";
|
|
}
|
|
|
|
#endregion Public Constructors
|
|
|
|
#region Public Properties
|
|
|
|
public string Host_Address { get; set; }
|
|
|
|
public string Host_Password { get; set; }
|
|
public int Host_Port { get; set; }
|
|
|
|
public SecureSocketOptions Host_SecureSocketOptions { get; set; }
|
|
public string Host_Username { get; set; }
|
|
public string Sender_EMail { get; set; }
|
|
|
|
public string Sender_Name { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
}
|