The following ASP script can be used to send email using CDOSYS on our servers.

Dim iConfig
Dim theFlds
Dim objCDOMail

Set iConfig = Server.CreateObject ("CDO.Configuration")
Set theFlds = iConfig.Fields

'Set and update fields properties
theFlds("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
theFlds("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "mail.servwise.com"
theFlds("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60
theFlds("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
theFlds("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
theFlds("http://schemas.microsoft.com/cdo/configuration/sendusername")="name@email.com"
theFlds("http://schemas.microsoft.com/cdo/configuration/sendpassword") ="yourpassword"

theFlds.Update

'Create the e-mail server object
Set objCDOMail = Server.CreateObject("CDO.Message")
Set objCDOMail.Configuration = iConfig
Err.Clear

objCDOMail.From = "sender@emaladdress.com"
objCDOMail.To = "recipient@emaladdress.com"
objCDOMail.Subject = "Email Subject"
objCDOMail.TextBody="Email Body"
objCDOMail.Send

'Close the server mail object
Set objCDOMail = Nothing
Set theFlds= Nothing
Set iConfig = Nothing

You may also find the following useful http://www.w3schools.com/asp/asp_send_email.asp



  • 16 Users Found This Useful
Was this answer helpful?

Related Articles

Howto: Reduce Spam using SpamAssassin Bayesian filters in cPanel

Introduction While this article is intended to demonstrate how to train and use Bayesian filters...

Securing your site

Typical attack vectors for hacked sites are the following: Insecure file and folder...

How do I upload my website to your servers?

There are a number of ways to publish your website depending on if you are publishing to our...

Name server change and crossover traffic during propagation

During the change of Name servers, DNS is cached at all DNS servers until the TTL (time to live)...

Mail Server error 550 No such user here

I get the following error when sending emails. Server error: '550 No such user here' This is...