I forgot to mention, I use .NET Framework 1.1 but you are using 2.0
Here is a subset of the code I use and it works.
Dim email As New System.Web.Mail.MailMessage
email.To = "
[email protected]"
email.From = "
[email protected]"
email.Subject = "any subject"
email.Body = "Body of email"
email.BodyFormat = Web.Mail.MailFormat.Text
System.Web.Mail.SmtpMail.Send(email)
Kerry O'Carroll