namespace Abp.Net.Mail.Smtp
{
///
/// Defines configurations to used by SmtpClient object.
///
public interface ISmtpEmailSenderConfiguration : IEmailSenderConfiguration
{
///
/// SMTP Host name/IP.
///
string Host { get; }
///
/// SMTP Port.
///
int Port { get; }
///
/// User name to login to SMTP server.
///
string UserName { get; }
///
/// Password to login to SMTP server.
///
string Password { get; }
///
/// Domain name to login to SMTP server.
///
string Domain { get; }
///
/// Is SSL enabled?
///
bool EnableSsl { get; }
///
/// Use default credentials?
///
bool UseDefaultCredentials { get; }
}
}