IIS7 - post #23 - Vista and SMTP server. Where is it?

Where is my SMTP server on Vista?  I'm not sure why more developers haven't asked this question. 
Simple, it is not included - http://blogs.iis.net/bills/archive/2006/09/18/IIS7-_2D00_-Vista-vs.-Longhorn-Server.aspx

Here are a couple I've used on Vista Ultimate.   I'm sure there are others but for testing, SMTP is additional 'feature' you'll need to add, at this point. 

Free SMTP Server (This is handy, runs as an app and simple to configure for testing your apps).
http://softstack.com/freesmtp.html

Smartermail - Free for one domain.
http://www.smartertools.com/Products/SmarterMail/Free.aspx

Steve Schofield
Microsoft MVP - IIS

**************************************

Some additional testing. 
In IIS7 SMTP properties, if you put a smarthost or server that allows relaying.  This will work too for testing.  Then you won't have to install anything on Vista.

Here is the code I used to send email to a smarthost on Vista.

        'create the mail message
        Dim mail As New System.Net.Mail.MailMessage()

        'set the addresses
        mail.From = New Net.Mail.MailAddress("me@mycompany.com")
        mail.To.Add("Steve@ChangeThisToSomething.com")

        'set the content
        mail.Subject = "This is an email"
        mail.Body = "this is a sample body"

        'send the message
        Dim smtp As New Net.Mail.SmtpClient()
        smtp.Send(mail)

Here is the picture of my settings on Vista to send email to a remote relay.

 

Published Tuesday, December 19, 2006 10:46 PM by steve schofield
Filed under: ,

Comments

# Vista does not have an SMTP server « Midspot

Wednesday, December 20, 2006 4:59 PM by Vista does not have an SMTP server « Midspot

PingBack from http://midspot.wordpress.com/2006/12/20/vista-does-not-have-an-smtp-server/

# re: IIS7 - post #23 - Vista and SMTP server. Where is it?

Monday, June 11, 2007 4:23 AM by Aaron Seet

Free SMTP Server looks like a standard Windows program; guess there's no option to run it as a service.

# Send email from your local machine

Wednesday, August 15, 2007 4:51 AM by Steve Schofield Weblog

A common question that comes up in the newsgroups is how to setup your local machine to relay email.

# re: IIS7 - post #23 - Vista and SMTP server. Where is it?

Monday, August 20, 2007 7:56 AM by Diamondz

I've found this application which is free, mini-Relay, http://www.netvicious.com/ which I've been using as my replacement to the missing SMTP server.

(The site is in Spanish, but the app is English, scroll to the bottom of the page and download).

# C# versus Java » Blog Archive » Sending email from my web service

Pingback from  C# versus Java  » Blog Archive   » Sending email from my web service

# Things I wish Microsoft would fix in Vista « Dave Nicoll’s personal blog

Pingback from  Things I wish Microsoft would fix in Vista « Dave Nicoll’s personal blog

# No connection could be made because the target machine actively refused it « Update Panel .NET

Pingback from  No connection could be made because the target machine actively refused it « Update Panel .NET

# Roaming in the computer world » Blog Archive » I am way behind on this: Microsoft dropped SMTP in client OS since Vista

Pingback from  Roaming in the computer world  » Blog Archive   » I am way behind on this: Microsoft dropped SMTP in client OS since Vista

# SMTP sous Vista

Thursday, July 23, 2009 8:39 AM by SMTP sous Vista

Pingback from  SMTP sous Vista