本文介绍了如何使用Microsoft.Exchange.WebServices.Data托管API通过多行主体发送消息?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用Microsoft.Exchange.WebServices.Data托管API通过多行主体发送消息?如果可能,也请共享代码.
How to send message with multi-line body with Microsoft.Exchange.WebServices.Data Managed API? Please share the code also if possible.
推荐答案
var message = new System.Net.Mail.MailMessage();
message.Body = "First Line <br /> second line";
这篇关于如何使用Microsoft.Exchange.WebServices.Data托管API通过多行主体发送消息?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!