I wanted to be able to send email from my blog when visitors placed comments on an entry. To do this I used the following code: Private Sub SendEmail() ‘from: http://www.4guysfromrolla.com/webtech/080801-1.shtml ‘Create an instance of the MailMessage class Dim objMM As New System.web.Mail.MailMessage ‘Set the properties objMM.To = “email@domain.com” objMM.From = “email@domain.com” ‘Send the email [...]