Web 邮件客户端帮助程序不翻译消息正文中的换行符 (mvc3/asp.net)?

发布于 2024-12-10 02:42:22 字数 636 浏览 1 评论 0原文

有人能告诉我为什么当作为网络邮件助手的正文传递时,电子邮件中的换行符没有被翻译吗?

            string body = "First line here" +  Environment.NewLine + Environment.NewLine +
          "Here is a newline...";

                    WebMail.Send(
                        "[email protected]",
                        "Subject",
                        body, "[email protected]");

输出全部位于电子邮件本身的同一行上。谢谢!

Can somebody tell me why newlines are not being translated in the email message when passed in as the body of the web mail helper?

            string body = "First line here" +  Environment.NewLine + Environment.NewLine +
          "Here is a newline...";

                    WebMail.Send(
                        "[email protected]",
                        "Subject",
                        body, "[email protected]");

Output is all on the same line in the email message itself. Thx!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花开柳相依 2024-12-17 02:42:22

send 方法中的参数 isBodyHtml 的默认值为 true,这就是忽略 Environment.NewLine 的原因。如果您设置 isBodyHtml = false 它将起作用。

WebMail.Send(to: "[email protected]", subject: "Test", isBodyHtml:false, body: "First line here" + Environment.NewLine + "Second line.");

Default value for parameter isBodyHtml from send method is true that's why Environment.NewLine is ignored. If you'll set isBodyHtml = false it will work.

WebMail.Send(to: "[email protected]", subject: "Test", isBodyHtml:false, body: "First line here" + Environment.NewLine + "Second line.");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文