Files
Umbraco-CMS/src/Umbraco.Core/Configuration/ISmtpSettings.cs
2020-05-20 11:42:23 +02:00

16 lines
360 B
C#

using System.Net.Mail;
namespace Umbraco.Core.Configuration
{
public interface ISmtpSettings
{
string From { get; }
string Host { get; }
int Port{ get; }
string PickupDirectoryLocation { get; }
SmtpDeliveryMethod DeliveryMethod { get; }
string Username { get; }
string Password { get; }
}
}