View Single Post
Old 02-07-2006, 01:59 PM   #2 (permalink)
rikb53
Registered User
 
Join Date: Jan 2006
Posts: 29
rikb53 is on a distinguished road
i believe i figured this out using CDO.
and Referring to the SmtpServer by node, not name.
of course that still doesnt explain why Sockets or vbScript didnt work, but at least i can use this.
anyother enlightenment is appreciated.
thanks
rik
Dim oMail As System.Web.Mail.SmtpMail
'oMail.SmtpServer = "mail.Exsvr.com"
oMail.SmtpServer = "10.143.22.32"
Dim msg As New System.Web.Mail.MailMessage
msg.BodyFormat = MailFormat.Html
msg.To = "rrb7@yahoo.com"
msg.From = "rrb7@yahoo.com"
msg.Body = "<table><tr><td>hello</td></tr></table>"
oMail.Send(msg)
rikb53 is offline   Reply With Quote