views:

61

answers:

2

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?

+8  A: 

Use the Mail API.

Drew Sears
+1  A: 

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="..."]
)
utku.utkan