背景:
  在winform中打开outlook后,正文部分的文本显示为:
  产品名称:xxxx客户名称:www希望得到处理结果:是问题描述:  本来希望显示为:
  产品名称:xxxx
  客户名称:www
  希望得到处理结果:是
  问题描述:问题:
  现在是用\n\r来描述回车换行,没有起作用,请问用什么描述回车换行可以起作用?代码:
private void sendMail()
{
#region 信息
string strReceiveMail,strTitle,strBody;
strReceiveMail = "[email protected]";
strTitle = "客户反馈:(请补充标题)" ;
strBody = "产品名称:xxxx\r\n";
strBody = strBody + "客户名称:www\r\n";
strBody = strBody + "希望得到处理结果:是\r\n";
strBody = strBody + "\r\n问题描述:\r\n";
#endregion #region 调用outlook发送
string strTmp = "mailto:" + strReceiveMail + "?subject=" + strTitle + "&body=" + strBody;
System.Diagnostics.Process.Start( strTmp);
#endregion
}