我有带有邮件代码部分的 Flask 应用程序,例如
if app.config['MAIL']:
mail.send(message)
else:
print message.html
有时由于邮件服务器问题,mail.send() 函数会失败。您如何检查错误状态并记录相同的内容?
怎么做
if app.config['MAIL']:
retcode=mail.send(message)
else:
print message.html
# now log it
if (retcode != 0):
#log it or take anyother action.