I don't have a hotmail account to test it on.
To send a mail message from a windows forms account, do something like this.
VB Code:
'Create the mail message object and set its properties. Dim theMail As New System.Web.Mail.MailMessage theMail.To = "[email protected]" theMail.From = "[email protected]" theMail.Body = "Whatever text you want." theMail.Subject = "My subject" 'Set up the SMTP server to use to send the message. System.Web.Mail.SmtpMail.SmtpServer = "mail.yourmailserverdomain.com" 'Send the mail. System.Web.Mail.SmtpMail.Send(theMail)




Reply With Quote