python - I get MailService.Send message, but my mail isnt coming to adres -
my main.py
message = mail.emailmessage(sender="<ada******@gmail.com>", subject="your account has been approved") message.to = "<*****.ada@gmail.com>" message.body = """ please let know if have questions """ message.send()
i use google app engine mailservice
following console output:
info 2015-05-11 17:21:46,179 mail_stub.py:143] mailservice.send from: <ada******@gmail.com> to: <*****ada@gmail.com> subject: account has been approved body: content-type: text/plain data length: 317
but mail isn't coming address *****.ada@gmail.com
. problem?
if on development server need mail server use: see here how can use sendmail or smtp server. (here @ bottom):
when application running on app engine, uses app engine mail service send email messages.
so, if on dev server cannot send emails sent when deploy code on app engine.
Comments
Post a Comment