ActiveX component can't create object: 'CDONTS.NewMail' - ASP
By Emiley J. Viewed: 31741 times Emailed: 207 times Printed: 193 times
Normally this happens when you are trying to send email from your asp page using CDONTS but your system doesn't have the cdonts.dll file.
You can solve this issue by copying the cdonts.dll from any windows 2000 server (It will be normally found in the c:\winnt\system32 folder).
Copy this file to your webserver and copy it to the c:\windows\system32 folder.
Just copying the file is not enough. You have to register the Active X component in that system. You can do it by following the steps below.
1. Copy the cdonts.dll to the c:\windows\system32 folder or c"\winnt\system32 (whichever is applicable to you)
2. Open the Command prompt
3. Run the following command "regsvr32 cdonts.dll"
4. You will now see a alert box that says component successfully registered.
Now you can send your emails from your asp using the CDONTS.
Sample asp to send email is given below.
Dim MyCDONTSMail2
Dim HTML
Set MyCDONTSMail2 = CreateObject("CDONTS.NewMail")
HTML = "<!DOCTYPE HTML PUBLIC""-//IETF//DTD HTML//EN"">"
HTML = HTML & "<html>"
HTML = HTML & "<body>"
HTML = HTML & "<p align=""Center"">"
HTML = HTML & "<h4 align=""center""><u>You can put the heading here
HTML = HTML & "</p>"
' The following four lines will get the form fields and values and add it to the email body.
for x = 1 to Request.Form.count()
HTML = HTML & Request.Form.key(x) & " = "
HTML = HTML & Request.Form.item(x) & "<br>"
next
HTML = HTML & "</body>"
HTML = HTML & "</html>"
MyCDONTSMail2.From= "webmaster@java-samples.com"
MyCDONTSMail2.To= "recipientemail@java-samples.com"
MyCDONTSMail2.cc= "ccrecipient@java-samples.com" 'if required
MyCDONTSMail2.bcc= "bccrecipient@java-samples.com" 'if required
MyCDONTSMail2.Subject="Your email subject"
MyCDONTSMail2.BodyFormat=0
MyCDONTSMail2.MailFormat=0
MyCDONTSMail2.Body=HTML
MyCDONTSMail2.Send
set MyCDONTSMail2=nothing
Comments(0)
Be the first one to add a comment
Latest Tutorials
| [2009-02-27] | IsPostBack in ASP.net |
| [2009-02-27] | What is Code-Behind in ASP.net |
| [2009-02-27] | ASP Versus ASP.NET Events |
| [2009-02-27] | Lifecycle of a web form in ASP.net |
| [2009-02-27] | Directives in ASP.net |
| [2009-02-27] | DataGrid Control in ASP.net |
| [2008-12-01] | Advantages of Stored Procedures |
| [2008-11-27] | Event Driven Programming in ASP.net |
| [2008-11-26] | Advantages of ASP.NET |
| [2008-11-26] | What is ASP.NET? |
| [2008-11-26] | Visual Basic .NET Vs Visual C# - (Differences) |
| [2008-08-02] | IIS and WAP. Configuring IIS to deliver WML (WAP content) |
| [2008-08-02] | Getting started with ASP |
| [2008-04-08] | ActiveX component can't create object: 'CDONTS.NewMail' - ASP |
Most Viewed Articles (in last 30 days)

