Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Font color for System.Net.Mail subject line

Status
Not open for further replies.

vbajock

Programmer
Jun 8, 2001
1,921
US
Anyone know how to format the subject line so it appears in red in the user's Outlook InBox ? My code:

Dim mail As New MailMessage()

Dim sSubjectLine as string ="URGENT: ACTION REQUIRED!"

mail.Priority = MailPriority.High

mail.Subject = sSubjectLine.ToString

??-> code for changing font color of sSubJectLine to red??
 
Have you actually seen this done?
The only time I've seen a red outlook item is with an expired task from the mail item.

You've got questions and source code. We want both!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top