如何在 C# 中处理 Utils.EmailFailed 事件
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会尝试:
I would try: