gpt4 book ai didi

django - 如何在 Django 1.10 中捕获电子邮件发送异常

转载 作者:行者123 更新时间:2023-12-01 08:14:47 24 4
gpt4 key购买 nike

我在应用程序的不同位置发送电子邮件。

msg.send(fail_silently=True)

有助于避免在发送电子邮件时出现错误时向最终用户显示错误页面。是否可以捕获此错误以便我制作日志或执行自定义函数?

笔记:
我在 Python 3.5 中使用 Django 1.10.4。

最佳答案

正如它在 Django 文档中所说的 send_email ( https://docs.djangoproject.com/en/1.10/topics/email/#send-mail ):

fail_silently: A boolean. If it’s False, send_mail will raise an smtplib.SMTPException. See the smtplib docs for a list of possible exceptions, all of which are subclasses of SMTPException.



所以你可以这样做:
from smtplib import SMTPException

try:
msg.send()
except SMTPException as e:
print('There was an error sending an email: ', e)

关于django - 如何在 Django 1.10 中捕获电子邮件发送异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41457565/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com