0

呼び出しを制御してtry/exceptに埋め込みたいsend()のですが、どのようなエラーが発生するかわかりません。

SDKを見てみると、MailServiceErrorがそのようなもののようですが、そのようなエラーをテストする方法がわからないため、わかりません。

誰かがこれを確認できますか?

4

1 に答える 1

4

send()の呼び出しによってスローされる可能性のある例外は次のとおりです。https ://developers.google.com/appengine/docs/python/mail/exceptions

これらをキャッチする方法の例を次に示します。

from google3.apphosting.api import mail

# other code to create 'message' here
try:
  message.send()
except mail.InvalidSender, e:
  # Do something special for an invalid sender error
  pass
except mail.Error, e:
  # This will catch all the other exceptions in the doc above.
  pass
于 2012-04-23T16:11:41.177 に答える