up vote 22 down vote favorite
6
share [g+] share [fb]

How can I get SMTP to work on Windows 7 (developer box). I used to just be able to turn it on for a windows XP box. Is SMTP not included on windows 7? If so, what can I use instead as a free relay mechanism.

link|improve this question
feedback

8 Answers

up vote 16 down vote accepted

SMTP isn't included with Windows Vista, either - you'll have to download and install a free third-party SMTP server. There are a number available - http://www.softstack.com/freesmtp.html being one.

UPDATE: Some more options - http://stackoverflow.com/questions/341651/vistas-iis-instance-doesnt-have-smtp-solutions

link|improve this answer
feedback

If you are developing in ASP.net using the built-in mail libraries, a lesser-known configuration setting is to use the following:

<configuration>
. . . more config stuff here . . .     
  <system.net>
    <mailSettings>
      <smtp deliveryMethod="SpecifiedPickupDirectory" from="noreply@testdomain.org">
        <specifiedPickupDirectory pickupDirectoryLocation="c:\smtp\"/>
      </smtp>
    </mailSettings>
  </system.net>
</configuration>

All your application generated emails will be dumped into this directory during development. No smtp server needed!

link|improve this answer
++ this is perfect for development – Sky Sanders May 5 '10 at 10:11
feedback

You can use Google's as a free relay, however you need to have a Google account.

smtp.gmail.com

Just make sure the ports are setup as defined for your account.

link|improve this answer
This is by far the easiest way for testing purposes. Here is a link for the configuration information. geekzone.co.nz/tonyhughes/599 – nameEqualsPNamePrubeGoldberg Dec 20 '11 at 18:25
feedback

According to this post, the issue an SMTP server was included in IIS6, but has been removed in IIS7. This thread suggests the Remote Server Administration Tools (which include a SMTP server), as long as you don't have the Home edition of Windows.

link|improve this answer
feedback

I got "SMTP E-mail" to appear in my Computer Management IIS Features View by going to

Start -> Turn Windows Features On or off

And activating these two checkboxes:

Internet Information Services -> Web Management Tools -> IIS Maanagement services Internet Information Services -> World Wide Web Services-> Application Development Features -> ASP.NET

SMTP E-mail didn't appear immediately in the Computer Management, IIS Features View. Had to reopen it.

link|improve this answer
2  
However, I am not sure this actually starts an SMTP server. Can't find any SMTP service and cannot telnet localhost 25. Any suggestions on where to go from here? – Chris May 12 '11 at 16:11
Same thing here. – s15199d Dec 1 '11 at 0:59
feedback

I use "Free SMTP Server" from Softstack.

http://www.softstack.com/freesmtp.html

HTH

link|improve this answer
But this SMTP Server only allow to send 5 emails. – Juan Carlos May 20 '11 at 14:20
feedback

For those still coming across this, I've played with the two servers suggested above (freesmtp and hmailserver). Freesmtp is very quick and simple and worked out the box but only lets you send 10 emails a day without paying $69. hmailserver takes longer to set up (although still fairly painless) but has more features and hasn't asked me for money (yet).

link|improve this answer
feedback

I had the same problem, and I installed hMailServer.
http://hmailserver.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.