I'd like to emulate the postfix sendmail command in Django where I don't need to explicitly start up a postfix server.

For example if I simply enter the following on the command line:

sendmail recipient@example.com
my message body
^D

This will send a message to recipient@example.com. I don't need to start up a postfix server explicitly.

It seems like other languages (Perl and PHP) have bindings that will basically replicate this. However, I couldn't find a way to do it in Django/Python. The closest I got was by setting

EMAIL_HOST = 'localhost'

in settings.py and then manually doing a

postfix start

This allows the django send_mail() command to do its thing, but isn't there some way to achieve this without a running postfix server in the background? How do other environments achieve this successfully?

Thanks -S

(And no - I do not want to set up a third party gmail account to do this - that is a well worn question).

link|improve this question

79% accept rate
feedback

1 Answer

Maybe this will help you. Haven't tried it personally but seems like will suit your needs without all the trouble involved in setting a postfix server.

link|improve this answer
Setting up a postfix server is pretty easy (sudo postfix start) so I guess I should just bite the bullet and do it. I was just curious as to how the postfix sendmail libraries work in these other environments, even when there is no explicit postfix process running. – shreddd Oct 7 '11 at 16:47
feedback

Your Answer

 
or
required, but never shown

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