Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any way to make an email's subject bold?

Tags:

c#

asp.net

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?

like image 910
MD Sayem Ahmed Avatar asked Oct 04 '10 04:10

MD Sayem Ahmed


People also ask

Can you bold an email subject line?

Start writing a subject line. Then, click the magic paintbrush. You'll see a list of all the different ways you can format your subject. The classic options are first: bold (and bold italics), italics, underline, and strikethrough.

How do you bold the subject line in Outlook?

2. To bold Subject: Outlook client->View tab->View Settings->Other Settings->change Row Font style to Bold.

Can you bold email subject line in Gmail?

On your Android phone or tablet, open the Gmail app . Add text to your message. Double tap the text you want to format. Tap Format, then choose a formatting option like bolding, italics, or changing the font color.

Can you change the font of email subject line?

Click View > View Settings. Click Other Settings. To change the font or font size for the column headers in your Inbox (like “From” and “Subject”), click Column Font, and then make the desired adjustment.


1 Answers

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.

like image 174
BoltClock Avatar answered Sep 30 '22 19:09

BoltClock