MailMessage.SubjectEncoding Property
.NET Framework (current version)
Gets or sets the encoding used for the subject content for this e-mail message.
Assembly: System (in System.dll)
The following code example demonstrates setting the SubjectEncoding property.
MailMessage message = new MailMessage(from, to); message.Body = "This is a test e-mail message sent by an application. "; // Include some non-ASCII characters in body and subject. string someArrows = new string(new char[] {'\u2190', '\u2191', '\u2192', '\u2193'}); message.Body += Environment.NewLine + someArrows; message.BodyEncoding = System.Text.Encoding.UTF8; message.Subject = "test message 1" + someArrows; message.SubjectEncoding = System.Text.Encoding.UTF8;
.NET Framework
Available since 2.0
Available since 2.0
Show: