Multipart email message

前端 未结 4 629
后悔当初
后悔当初 2021-01-13 04:49

How to use html tags in a multipart email message. When I use its not recognized as the bold tag.

4条回答
  •  说谎
    说谎 (楼主)
    2021-01-13 05:29

    which programming language you are using to send email.

    In any language a option should be there like "IsBodyHtml". To do the "True" this check. Like code of .NET

    System.Net.Mail.MailMessage mm = new System.Net.Mail.MailMessage(); mm.IsBodyHtml = true;

    So the mail will go as html text.

提交回复
热议问题