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?

link|improve this question

feedback

10 Answers

up vote 40 down vote accepted

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

link|improve this answer
+1 A little buggy but overrall does what its needed for. Thanks! – David May 7 '10 at 17:37
+1 Just plain brilliant! :) – Ranhiru Cooray Jan 31 '11 at 4:10
3  
Nice when it works but very crash-prone. – olefevre Mar 7 '11 at 5:44
This looks like a brilliant app, unfortunately it crashes for me every time a mail is received (running smtp4dev on win7, sending from SQL Server Database Mail Test E-mail script) – Jona Dec 6 '11 at 13:17
Just downloaded this to test code sending email through sharepoint. I didn't have SMTP installed on my virtual so this app worked like a charm. Kudos! – Ryan Dec 30 '11 at 0:39
show 1 more comment
feedback

A few ago I came across the following solution for the .NET platform.

<system.net>
  <mailSettings>
    <smtp deliveryMethod="SpecifiedPickupDirectory">
      <specifiedPickupDirectory pickupDirectoryLocation="C:\TestMailMessages\" />
    </smtp>
  </mailSettings>
</system.net>

Simply place the above code in your App.config or Web.config. When you send a message now it will be stored as a file in the directory you provided as "pickupDirectoryLocation". Works like a charm.

link|improve this answer
Awesome, zero install... works great for me. Thanks! – WildJoe Jan 23 '11 at 1:32
feedback

there is now a web based version of Papercut: http://dummysmtp.com also the app based version works fine for me.

link|improve this answer
feedback

Dumbster might be what you want then. It's a fake SMTP server written in Java

link|improve this answer
updated my answer – Fredou Jun 17 '09 at 12:42
feedback

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|improve this answer
feedback

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

link|improve this answer
I finally got around to trying these. Unfortunately, both keep crashing. – Patrick McElhaney Sep 10 '09 at 14:18
2  
Just tried Papercut. Works great and has the bonus feature of being able to view the email right in the UI. – Jeremy Wiebe Aug 27 '10 at 21:24
feedback

if you are using java I would use Wiser: Wiser is a simple SMTP server that you can use for unit testing applications that send mail.

link|improve this answer
feedback

Try also Mailtrap: web based service.

It offers:

  • All emails in one place
  • Shared access for dev team to the inbox
  • Developer tools to analyze emails
  • Flexible configuration
link|improve this answer
feedback

I've been using "Test Mail Server Tool" from ToolHeap for years.

http://www.toolheap.com/test-mail-server-tool/

It is a simple app that runs in your system tray and dumps emails to a folder. It can also be configured to open each email in your default mail program.

link|improve this answer
feedback

You can also use netDumbster.

http://netdumbster.codeplex.com/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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