1

I have default python 2.7 on my mac.

I am trying to run the following code using localhost with Google App engine:

def sendMail(TO, TEXT):

    fromaddr = 'me@gmail.com'
    toaddrs  = TO
    msg = TEXT

    username = 'me@gmail.com'
    password = 'testpass'

    server = smtplib.SMTP('smtp.gmail.com:587')
    server.starttls()
    server.login(username,password)
    server.sendmail(fromaddr, toaddrs, msg)
    server.quit()

But get the error No SSL support included in this python.

This works fine when I just run the python file on its own, separate from everything else.

But when I serve the files using localhost and access it from the website I get the above error.

Any idea why this might be happening?

Greg Peckory
  • 7,220
  • 18
  • 64
  • 108

0 Answers0