Hi, I am sending email using C#.NET, for which I am using System.Net.Mail.MailMessage
class. I want to make a portion of the email's subject bold. Is there any way to do it?
views:
173answers:
2
+6
A:
No, there is no way to format the subject of an email message with font styles, weights, faces, color, etc. It is plain-text only.
It's not a limitation of .NET, rather it's the way email is.
BoltClock
2010-10-04 04:22:17
Thank you very much.
Night Shade
2010-10-04 04:23:49
+3
A:
While you have no control over the subject, you could hint to the email clients that a message is important by setting the priority. Depending on the client, it might be highlighted in some way.
eg
message.Priority = MailPriority.High;
Since people abuse this, email clients could very well ignore it. But see if it works for you!
Will
2010-10-04 04:42:12