Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Receive and send emails in python

I've been looking into sending mail with python and found a few different options (setting up my own mailserver, using gmail's smtp, etc) but was wondering if there was some simple way to do it. I am running the python script via wsgi on apache2 on an ubuntu box. Thanks for any tips!

share|improve this question
Kinda. He's more interested in incoming and outgoing. I'm just looking into a way to send emails without using gmail (some other smtp server I guess) – Shane Reustle Oct 3 '10 at 23:37

marked as duplicate by Greg Hewgill, ammoQ, SilentGhost, bmargulies, Graviton Oct 5 '10 at 2:41

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 0 down vote accepted

There's a great example here. As you seem to know, you'll just need an smtp server to do the actual sending. That particular step is not dependent on python.

If g-mails smtp server let's you send mail, I'd go that route. When I last set this up (for an svn backup script), I luckily got to use my company's smtp server.

share|improve this answer
I was hoping I could get around using gmail as it always says sent from your gmail account but that worked well enough. I used this: kutuma.blogspot.com/2007/08/… – Shane Reustle Oct 3 '10 at 22:18

Not the answer you're looking for? Browse other questions tagged or ask your own question.