EntLib 5 电子邮件主题行编辑吗?

发布于 2024-10-20 04:44:47 字数 297 浏览 1 评论 0原文

我正在尝试更改 Enterprise Library 5 发送的电子邮件的主题行。我的意思并不是更改主题行 Starter/Ender(如 http://entlib.codeplex.com/discussions/69689?ProjectName=entlib),我想更改实际的主题文本,该文本与记录器的消息标题。

所有想法都受到赞赏。

谢谢。

I am trying to change the subject line of email sent by Enterprise Library 5. I don't mean changing the subject line Starter/Ender (as seen in http://entlib.codeplex.com/discussions/69689?ProjectName=entlib), I want to change the actual Subject text, which is not the same as the Logger's Message Title.

All ideas appreciated.

Thanks.

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

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

发布评论

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

评论(1

夏雨凉 2024-10-27 04:44:47

查看 Enterprise Library 5 中 EmailMessage 的源代码,主题由以下代码生成:

string sendToSmtpSubject = header + logEntry.Severity.ToString() + footer;

如果您需要完全控制电子邮件中的主题行,则需要扩展现有的 EmailTraceListener code> 以包含您添加的功能。 (或者简单地修改代码并在应用程序中使用您自定义构建的 EntLib)。

Looking at the source for EmailMessage in Enterprise Library 5 the subject is generated by

string sendToSmtpSubject = header + logEntry.Severity.ToString() + footer;

If you need to have complete control of the subject line in your email message you will need to extend the existing EmailTraceListener to include your added functionality. (or simply modify the code and use your custom build of EntLib in your application).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文