使用自定义主题配置或扩展 log4net SmtpAppender
如何为生成的电子邮件主题指定布局和转换模式?
BufferSize 需要小于或等于 1,这样就不会发生缓冲。
How can I specify a layout and conversionPattern for the resulting emails subject?
The BufferSize will need to be less than or equal to 1 so no buffering will occur.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
CodeProject 文章 log4net NonBufferedSmtpAppenderWithSubjectLayout 看起来很有希望。
通过继承所需的基本附加程序(在我的例子中为 SmtpPickupDirAppender)并添加 ILayout 属性,可以更改 Append 方法中的主题。
然后可以通过指定 subjectLayout 属性来配置它以覆盖默认主题。
The CodeProject article log4net NonBufferedSmtpAppenderWithSubjectLayout looks promising.
By inheriting from the required base appender (SmtpPickupDirAppender in my case) and adding a ILayout property it is possible to change the Subject in the Append method.
This can then be configured by specifying a subjectLayout property to override the default subject.
这是具有自定义主题的 SmtpAppender 的另一个示例。
Here is another example of SmtpAppender with custom subjects.
您可以从 Nuget
源代码和示例
You can download it from Nuget
Source code and example
因为之前的答案建议使用 NuGet 版本的 SmtpAppenderWithSubjectLayout 需要 log4net 版本 > 1.2.1,我使用了NuGet源代码,但将其修改为使用log4net 1.2.1
Because the previous answeres that suggests using NuGet version of SmtpAppenderWithSubjectLayout needs log4net version > 1.2.1, I've used the NuGet source code but modified it to use the log4net 1.2.1