如何在 C# 中处理 Utils.EmailFailed 事件

发布于 2024-08-04 01:31:41 字数 230 浏览 3 评论 0原文

我在 BlogEngine.net 中使用此方法向网站上的用户发送大量电子邮件:

Utils.SendMailMessageAsync(mail);

已经有一个事件在消息无法发送的情况下冒泡,但我不知道如何发送使用它:

Utils.EmailFailed

理想情况下,我只想计算未发送的消息数并将其显示给用户。

I'm using this method in BlogEngine.net to send a number of emails to users on the site:

Utils.SendMailMessageAsync(mail);

There is already an event that is bubbled up in case of a message not being able to be sent but I don't know how to use it:

Utils.EmailFailed

Ideally I just want to count the number of messages that aren't sent and display that to the user.

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

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

发布评论

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

评论(1

我会尝试:

Utils.EmailFailed += new EVENT_HANDLER_OF_THE_APPROPRIATE_TYPE(METHOD_YOU_WANT_CALLED_ON_FAILURE);

I would try:

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