using System;
using Cpp2IlInjected;
namespace System.Net.Mail
{
/// The delivery format to use for sending outgoing email using the Simple Mail Transport Protocol (SMTP).
// Token: 0x020002BD RID: 701
[Token(Token = "0x20002BD")]
public enum SmtpDeliveryFormat
{
/// A delivery format using 7-bit ASCII.
/// The traditional delivery format used in the Simple Mail Transport Protocol (SMTP) for mail messages.
// Token: 0x04000AFC RID: 2812
[Token(Token = "0x4000AFC")]
SevenBit,
/// A delivery format where non-ASCII characters in the envelope and header fields used in the Simple Mail Transport Protocol (SMTP) for mail messages are encoded with UTF-8 characters.
/// The extensions to support international email are defined in IETF RFC 6530, 6531, and 6532.
// Token: 0x04000AFD RID: 2813
[Token(Token = "0x4000AFD")]
International
}
}