vote up 5 vote down star
6

I have a lot of apps that send email. Sometimes it's one or two messages at a time. Sometimes it's thousands of messages.

In development, I usually test by substituting my own address for any recipient addresses. I'm sure that's what everybody else does, until they get fed up with it and find a better solution.

I was thinking about creating a dummy SMTP server that just catches the messages and dumps them in a SQLLite database, or an mbox file, or whatever.

But surely such a tool already exists? How do you test sending email?

flag

5 Answers

vote up 4 vote down

it seem this might be what you want then

link|flag
updated my answer – Fredou Jun 17 at 12:42
Thanks. It looks like that would make the tool I want trivial to build. – Patrick McElhaney Jun 17 at 13:30
vote up 0 vote down

The problem with sending SMTP messages is that there're many documents covering SMTP and being compliant to any one of them is not enough. You need to collect enough data about what SMTP server typical implementations exist so you can handle all possible interactions.

That's why having one SMTP server is not of great use.

link|flag
I'm not testing the SMTP client. I know it works. I'm developing things like web site shopping carts that send receipts to the user. I'm really concerned that the discount is applied correctly, but I can't run the code without sending an email. – Patrick McElhaney Jun 17 at 12:52
Though occasionally I do want to see the message that was sent. – Patrick McElhaney Jun 17 at 13:28
vote up 5 vote down

I faced the same problem a few weeks ago and wrote this: http://smtp4dev.codeplex.com

link|flag
vote up 2 vote down

This is similar to the smtp4dev except implemented in java so it works for non-windows developers.

http://www.aboutmyip.com/AboutMyXApp/DevNullSmtp.jsp

link|flag
vote up 1 vote down

There is also Papercut and Neptune, too bad none of these can be run in a portable way.

link|flag
I finally got around to trying these. Unfortunately, both keep crashing. – Patrick McElhaney Sep 10 at 14:18

Your Answer

Get an OpenID
or

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