namespace Swan.Net.Smtp
{
///
/// Contains useful constants and definitions.
///
public static class SmtpDefinitions
{
///
/// The string sequence that delimits the end of the DATA command.
///
public const string SmtpDataCommandTerminator = "\r\n.\r\n";
///
/// Lists the AUTH methods supported by default.
///
public static class SmtpAuthMethods
{
///
/// The plain method.
///
public const string Plain = "PLAIN";
///
/// The login method.
///
public const string Login = "LOGIN";
}
}
}