0

I want to set a specific font(helvetica neue) for the Email Content, which will be fired due to any user opertaion. It is not the base font i am using, and the email content is generated by StringBuilder.

Looking forward for suggestions

Thanks & Regards

Arka

2 Answers2

0

Send the email as HTML and use Google Web Fonts or similar hosted font service in the inline CSS styling.

IntoNET
  • 456
  • 2
  • 14
0

There is a suggestion. Set MailMessage property IsBodyHTML is equal to True.

MailMessage mailMsg= new MailMessage();
-------
mailMsg.IsBodyHtml = true;
mmushtaq
  • 3,430
  • 7
  • 30
  • 47