How to use CDOSYS Email ?

 
Use following code for CDOSYS Email componets.
<%
Set cdoConfig = Server.CreateObject("CDO.Configuration")
cdoConfig.Fields.Item(sch & "sendusing") = 2
cdoConfig.Fields.Item(sch & "smtpserver") = "mail.yourdomain.com"
cdoConfig.fields.update
Set cdoMessage = Server.CreateObject("CDO.Message")
Set cdoMessage.Configuration = cdoConfig
cdoMessage.From = test@yourdomain.com
cdoMessage.To = "test@medomain.com"
cdoMessage.cc = "test@otherdomain.com"
cdoMessage.Subject = "enquiry form CDOSYS componets"
cdoMessage.HTMLBody = "your text" 
cdoMessage.Send
Set cdoMessage = Nothing
Set cdoConfig = Nothing
response.redirect= "http://www.yourdomain.com"
%>
 
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to use Dundas Upload ?

The following code demonstrates how to populate the Upload control's collections, save uploaded...

error:Include file not found

Cause: Mostly This error cause when the parent path of your domain does not enable....

How to increase ASP timeout ?

You can increase timeout time from the ASP script itself by using Server.ScriptTimeOut property...

error:'8004020f' in CDONTS

  This error cause when you use wrong mail server in CDONTS Email componets. You will...

How to use ASPUpload ?

AspUpload is a COM+ component which enables an ASP application to capture, save and process files...