Hi,
I've developed a site with Python, hosted on Google Apps, and I want to send emails from that site.
Is that possible, and if so, where should I look to find out how?
Hi,
I've developed a site with Python, hosted on Google Apps, and I want to send emails from that site.
Is that possible, and if so, where should I look to find out how?
Here is a snippet for a quick start:
from google.appengine.api import mail
mail.send_mail(
sender='[email protected]',
to='[email protected]',
subject="Hello, World!",
body="..."]
)