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.

I've been using a dummy smtp server called DevNull SMTP so that I can test my app which sends out notification emails. It has a nice simple GUI, very helpful, but can't be scripted easily. I can't even start it listening to port 25. I have to run the app and then click on the start button...

Is there a similar app that can be scripted easily? Scripted in the sense that I can control it from a bash script or windows batch file and possibly even query the emails from my unit/functional tests.

share|improve this question
1  
you can take a look at the answers posted at stackoverflow.com/questions/550887/testing-smtp-with-net – Wimmel May 1 '11 at 7:45

closed as off topic by Andrew Barber, M42, Fabian Kreiser, Alex, Doorknob Mar 3 at 13:54

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

3 Answers

up vote 12 down vote accepted

there is a nice trick with python: http://muffinresearch.co.uk/archives/2010/10/15/fake-smtp-server-with-python/

Just one liner can do the job:

sudo python -m smtpd -n -c DebuggingServer localhost:25
share|improve this answer
legend - incredibly useful! – khoomeister Nov 24 '11 at 7:03

Disclaimer - I work for the company behind this service linked to below.

You can also use a hosted email testing service like Clickity. Some of them (ours included) come with an API for integrating into your tests.

That way if you hit a problem you've got someone else to do the hard work in adding new features, etc. for you.

share|improve this answer

I had a similar problem. Since I stumbled during my research over this question, here is what I ended up with:

For unit testing you can use subethasmtp. Base on subethasmtp I also wrote a program that you can use to call from scripts an query the results: developmentSMTP

share|improve this answer

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