up vote 10 down vote favorite
2

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|flag

5 Answers

up vote 10 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|flag
up vote 3 down vote

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|flag
++ this is perfect for development – code poet May 5 at 10:11
up vote 1 down vote

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|flag
up vote 1 down vote

I use "Free SMTP Server" from Softstack.

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

HTH

link|flag
up vote 0 down vote

that pickup directory works in the sense that the program generates some files that end up in that directory - but they don't go anywhere. how does one get them to get emailed from that directory?

link|flag

Your Answer

get an OpenID
or
never shown

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