Posted on: 5/26/2011 1:08:56 AM | Views : 613

Hi there
I want to ONLY send out email to notify somebody from ASP.Net and do not need to receive emails or manage email. So I installed IIS SMTP Virtual Server and then the following are my code. It works. But it uses yahoo mail to send out. However, it looks very bad by using yahoo mail since yahoo is something feel personal instead of corporate. I want the "from" to be set to something more like proper system. Like auto@system.com instead of xxx@yahoo.com How should I modify this and where in IIS SMTP I need to key in system.com etc ? Pls help on both code (especially on modifying host and Port lines) and IIS Settings. Thanks.
 
 Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        Dim m As New System.Net.Mail.MailMessage
        Dim sc As New System.N ...

Go to the complete details ...