If you are moving to ASP.NET 2.0, you should know that the method of sending emails has changed slightly.

The following code has been tested on our server.

Dim MailObj As New System.Net.Mail.SmtpClient
MailObj.Host = "127.0.0.1" 'localhost could be used or mail.domain.name
Dim cred As New Net.NetworkCredential("authemail", "authpass")
MailObj.Credentials = cred
MailObj.Send("fromemail", "destemail", "subject", "body here")


Comments

  Add Comment

Confirm Submission

Please enter the text from the image in the box provided; this helps us to prevent spam.