开发者

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

I am sending email using C#.NET, for开发者_Go百科 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?


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.


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!


Well actually there's a not-so-pratic way, you'll need to combine characters entities to do so, take a look at this page

http://www.fileformat.info/info/unicode/block/mathematical_alphanumeric_symbols/list.htm

and try some styles here

https://qaz.wtf/u/convert.cgi?text=style+my+subject

Hope it helps.


There is a way - and icons etc - just check your spam for examples... (here is one from today)

From: Diamond Hand Insider <that@your.diamondhandinsider.com>
To: 
Subject: 
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜