using System;
namespace Unosquare.Swan.Networking {
///
/// 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";
}
}
}