myatia
Programmer
- Nov 21, 2002
- 232
Hi, all,
I need to send an email out an a webserver that does not have an SMTP server running. I'm using CDO mail to send the email out through another remote server, and was wondering if there are any security or reliablity issues, as the script appears to access an outside web site (schemas.microsoft.com, see code below). Also, are there any other alternative ways to send email through a remote server? Any advice would be appreciated. Thanks,
Misty
I need to send an email out an a webserver that does not have an SMTP server running. I'm using CDO mail to send the email out through another remote server, and was wondering if there are any security or reliablity issues, as the script appears to access an outside web site (schemas.microsoft.com, see code below). Also, are there any other alternative ways to send email through a remote server? Any advice would be appreciated. Thanks,
Misty
Code:
With MailObj
'// To, from, subject, etc. settings here
.Item("[URL unfurl="true"]http://schemas.microsoft.com/cdo/configuration/sendusing")[/URL] = 2
.Item("[URL unfurl="true"]http://schemas.microsoft.com/cdo/configuration/smtpserver")[/URL] = "MAIL_SMTP_SERVER"
.send
end with