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: 0x020002C1 RID: 705 [Token(Token = "0x20002C1")] 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: 0x04000B09 RID: 2825 [Token(Token = "0x4000B09")] 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: 0x04000B0A RID: 2826 [Token(Token = "0x4000B0A")] International } }