|
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)
|