私のgmail smtpとpyramid_mailerパッケージを使用してピラミッドWebサイトから電子メールを送信しようとしています。まず、誰かが電子メールソリューションに関する別の提案をしている場合は、私に教えてください!pyramid_mailerとgmailで電子メールを送信できません
私は私のdev.iniに以下を追加:
mail.host = smtp.gmail.com
mail.username = [email protected]
mail.password = password
mail.port = 465
mail.ssl = True
そして、私はそうのようなメッセージを送信しています:
config.registry['mailer'] = Mailer.from_settings(settings)
以降...
mailer = request.registry['mailer']
message = Message(subject="hello world",
sender="[email protected]",
recipients=["[email protected]"],
body="hello!")
mailer.send(message)
を
残念ながら、次の例外があります。
SMTPServerDisconnected: please run connect() first
私は間違っていますか?
ありがとうございます!
ない答えていますが、別のSMTPサーバーでそれを試すことができますか? http://groups.google.com/group/comp.lang.python/browse_thread/thread/4791505038b2fca5 –