Click or drag to resize
MimeKit

ParserOptionsAllowUnquotedCommasInAddresses Property

Get or set whether the rfc822 address parser should ignore unquoted commas in address names.

Namespace: MimeKit
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public bool AllowUnquotedCommasInAddresses { get; set; }

Property Value

Boolean
true if the address parser should ignore unquoted commas in address names; otherwise, false.
Remarks

In general, you'll probably want this value to be true (the default) as it allows maximum interoperability with existing (broken) mail clients and other mail software such as sloppily written perl scripts (aka spambots) that do not properly quote the name when it contains a comma.

See Also