2020-08-20 08:24:23 +01:00
|
|
|
|
using System.Net.Mail;
|
|
|
|
|
|
|
2020-08-20 22:18:50 +01:00
|
|
|
|
namespace Umbraco.Core.Configuration.Models
|
2020-08-20 08:24:23 +01:00
|
|
|
|
{
|
|
|
|
|
|
public class SmtpSettings
|
|
|
|
|
|
{
|
|
|
|
|
|
public string From { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string Host { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public int Port { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string PickupDirectoryLocation { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public SmtpDeliveryMethod DeliveryMethod { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string Username { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string Password { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|