Is there a way to make the email object bold?

I am sending an email using C # .NET, for which I am using the System.Net.Mail.MailMessage class. I want part of the letter to be in bold. Is there any way to do this?

+4
source share
2 answers

No, there is no way to format the subject of an email message with font styles, weights, faces, color, etc. This is just text text.

This is not a .NET limitation; rather, it is an email method.

+9
source

As long as you have no control over the object, you can tell email clients that the message is important by setting priority. Depending on the client, it may be allocated in some way.

eg,

 message.Priority = MailPriority.High; 

Because people abuse it, email clients can greatly ignore it. But look if this works for you!

+3
source

All Articles