AddressDelimeterChar Enumeration |
Namespace: MailBee.Mime
Member name | Value | Description | |
---|---|---|---|
Comma | 0 | Use comma character (","). | |
Semicolon | 1 | Use semicolon character (";"). |
When building an e-mail address string containing multiple addresses (such as To, CC, BCC fields), MailBee can delimit individual addresses with either comma or semicolon. This can be set via MailMessage.Builder.AddressDelimeter property.
Still, it's recommended to leave the default value (comma) since using semicolon violates MIME standard and some mail clients might not be able to correctly parse messages containing semicolon-delimited e-mail addresses.
Note |
---|
When parsing (rather than building) e-mail address string, MailBee recognizes both comma and semicolon as delimiters. |