Home > cdo message > cdosys error handling

Cdosys Error Handling

Contents

(עברית)المملكة العربية السعودية (العربية)ไทย (ไทย)대한민국 (한국어)中华人民共和国 (中文)台灣 (中文)日本 (日本語)  HomeLibraryLearnDownloadsRepositoryCommunityForumsBlog Ask a question Quick access Forums home Browse forums users FAQ Search related threads Remove From My Forums server createobject cdo message error handling Answered by: How to obtain text error information from CDO.Message

Capture Cdo Message Error

call Scripting > The Official Scripting Guys Forum! Question 0 Sign in to vote

Cdo Message Get Error

I want tocapture the text description of a message that is triggered by an error trying to send an email message using CDO.Message in

Cdo Message Error Codes

a vbscript. Here is the script: Dim sMessage dim rc sMessage = "press OK to send email" 'Display the text in a messagebox Msgbox sMessage rc=fnSendEmail msgbox "return code from fnsendemail is " & rc wscript.quit rc Function fnSendEmail() 'Create an object of CDO type Set myMail=CreateObject("CDO.Message") cdonts error handling 'Enable SSL Authentication myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = True 'Enable basic smtp authentication myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 'Specify Yahoo SMTP server and Port Number myMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserver")="smtp.mail.yahoo.com" myMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 465 myMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 'Specify user id and password myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = "me@yahoo.com" myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "mypassword" 'Update the configuration fields myMail.Configuration.Fields.Update 'Specify email properties myMail.Subject = "Sending Email from QTP" myMail.From = "me@yahoo.com" myMail.To = "metoo@insight.rr.com" myMail.CC = "" myMail.BCC = "" myMail.TextBody = "This is the Text Body" 'Send 2 attachments in the mail 'myMail.AddAttachment "D:\Attachment1.txt" 'myMail.AddAttachment "D:\Attachment2.txt" 'Send mail on error resume next myMail.Send If err.Number <> 0 Then MsgBox err.Number & " - " & err.Description fnSendEmail = err.Number else msgbox "Mail sent OK" fnSendEmail = 0 end if Set myMail = Nothing End Function I run the vbs script from a perl script: use strict; use warnings; print STDERR "Execute vbscript

is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you cdo.message vbscript can post: click the register link above to proceed. To start viewing cdo error messages, select the forum that you want to visit from the selection below. Results 1 to 3 the sendusing configuration value is invalid of 3 Thread: Exception handling with CDO.message Tweet Thread Tools Show Printable Version Email this Page… Subscribe to this Thread… Display Linear Mode Switch to Hybrid Mode Switch to https://social.technet.microsoft.com/Forums/scriptcenter/en-US/cb4eb074-f00c-4ddc-9047-6d2552271249/how-to-obtain-text-error-information-from-cdomessage-call?forum=ITCG Threaded Mode 11-17-2005,03:38 AM #1 4dam View Profile View Forum Posts Registered User Join Date Oct 2005 Posts 32 Exception handling with CDO.message Hi, I am using code based on the following to send an email from a form on my site. One to me, and a confrmation email to the customer. <% theSchema="http://schemas.microsoft.com/cdo/configuration" set cdoConfig=server.CreateObject("CDO.configuration") cdoConfig.fields.item(theSchema http://www.webdeveloper.com/forum/showthread.php?85664-Exception-handling-with-CDO-message & "sendusing")=2 cdoConfig.fields.item(theSchema & "smtpserver")="my.smtp.server" cdoConfig.fields.update set cdoMessage=server.createObject("cdo.message") cdoMessage.configuration=cdoConfig cdoMessage.from=request.form("email") cdoMessage.to=request.form("to") cdoMessage.subject=request.form("subject") cdoMessage.textbody=request.form("message") cdoMessage.send set cdoConfig=nothing set cdoMessage=nothing %> The problem is, that if the customer enters an incorrect email address, the site displays an error message. I have an error page set up, informing the customer that their message couldn't be sent, and directing them back to check their email address, but how do I get it to divert to this page, rather than throwing an unhelpful error message? Any help would be gratefully appreciated. Thanks, Adam Reply With Quote 11-17-2005,11:46 AM #2 Giskard View Profile View Forum Posts Registered User Join Date Nov 2005 Posts 47 Before the cdoMessage.send line add the following: Code: On Error Resume Next then after the cdoMessage.send line add the following: Code: If Err.Number <> 0 Then Response.Redirect("ErrorPage.asp") end if You may want to check the error number to be sure that the e-mail address was the problem. sedlar.net Reply With Quote 11-19-2005,06:26 AM #3 4dam View Profile View Forum Posts Registered User

here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site http://stackoverflow.com/questions/24317238/unknown-email-code-from-cdo-message-send-method About Us Learn more about Stack Overflow the company Business Learn more about http://stackoverflow.com/questions/7705005/how-to-check-is-mymail-send-is-true-false hiring developers or posting ads with us Stack Overflow Questions Jobs Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of 4.7 million programmers, just like you, helping each other. Join them; it only takes a minute: Sign up Unknown email code from CDO.Message cdo message send method up vote 0 down vote favorite 1 I'm trying to send an email via vbscript. Here's my email code: I've hidden the email address of course. In my actual code I'm using a valid email address. Dim objCDO Set objCDO = Server.CreateObject("CDO.Message") objCDO.Configuration.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "smtp.oa.caiso.com" objCDO.Configuration.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25 objCDO.Configuration.Fields("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 objCDO.Configuration.Fields("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60 objCDO.Configuration.Fields.Update objCDO.To = "abcemail@devnull.com" objCDO.From = Sender objCDO.cc = cdo message error "" objCDO.bcc = "" objCDO.Subject = txtSubject objCDO.HTMLBody = Replace(sBody, Chr(10),"
") On Error GoTo 0 On Error Resume Next objCDO.Send If Err.Number <> 0 Then Response.Write "Just after the send command " Response.Write "Err.Number is " & Err.Number & "
" On Error GoTo 0 End If set objCDO = nothing When this code runs I see the following error: Just after the send command Err.Number is -2147220978 Now, when I research this error number there is no reference anywhere for error code -2147220978 In fact, a Google search for the number -2147220978 returns no results at all. Would you have any idea what that odd error code means? email vbscript asp-classic cdo.message share|improve this question edited Jun 19 '14 at 22:53 John Saunders 138k20175319 asked Jun 19 '14 at 22:26 user3669653 6418 Please confirm that you are using ASP Classic, not ASP.NET. –John Saunders Jun 19 '14 at 22:54 add a comment| 3 Answers 3 active oldest votes up vote 3 down vote -2147220978 = 8004020E From CDOSYSERR.h // // MessageId: CDO_E_SENDER_REJECTED // // MessageText: // // The server rejected the sender address. The server response was: %1 // #define CDO_E_SENDER_REJECTED 0x8004020EL D

here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack Overflow the company Business Learn more about hiring developers or posting ads with us Stack Overflow Questions Jobs Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of 4.7 million programmers, just like you, helping each other. Join them; it only takes a minute: Sign up How to check is myMail.Send is true/false up vote 3 down vote favorite 3 <% Dim sent Dim YourName Dim YourEmail Dim YourMessage Set myMail2=CreateObject("CDO.Message") YourName = Trim(Request.Form("Name")) YourEmail = Trim(Request.Form("Email")) YourMessage = Trim(Request.Form("Message")) Dim Body Dim body2 Body = Body & "Their Name: " & VbCrLf & YourName & VbCrLf & VbCrLf Body = Body & "Their Email: " & VbCrLf & YourEmail & VbCrLf & VbCrLf Body = Body & "Their Message: " & VbCrLf & YourMessage & VbCrLf & VbCrLf Set myMail=CreateObject("CDO.Message") myMail.Subject="A New Enquiry!" myMail.From="admin@musicalmatters.co.uk" myMail.To="james@devine.eu" myMail.TextBody=Body myMail.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/sendusing")=2 'Name or IP of remote SMTP server myMail.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/smtpserver")="smtp.1and1.com" 'Server port myMail.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/smtpserverport")=25 myMail.Configuration.Fields.Update myMail.Send set myMail=nothing body2="Thank you for contacting us!" & VbCrLf & "This is just a brief message to let you know your form was submitted successfully!"& VbCrLf & VbCrLf & "You may reply to this address, but you may not necessarily receive a reply, "& "you should receive a reply in 1-2 business day(s)!"& VbCrLf & "Thank you very much,"& VbCrLf & VbCrLf & "Musical Matters."& VbCrLf & "admin@musicalmatters.co.uk" Set myMail2=CreateObject("CDO.Message") myMail2.Subject="Thanks for Contacting Us!" myMail2.From="admin@musicalmatters.co.uk" myMail2.To=YourEmail myMail2.TextBody=body2 myMail2.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/sendusing

 

Related content

adodb fields error 800a0bb9

Adodb Fields Error a bb table id toc tbody tr td div id toctitle Contents div ul li a href Error e a li ul td tr tbody table p this is your first visit be sure to check out the FAQ by clicking the relatedl link above You may have to register before cdo message error you can post click the register link above to proceed To error f start viewing messages select the forum that you want to visit from the selection below Results cdo message error to of Thread CDO ERROR ADODB Fields error ' a bb

adodb fields error 800a0ea5

Adodb Fields Error a ea table id toc tbody tr td div id toctitle Contents div ul li a href Error a li li a href Cdo Message Error a li ul td tr tbody table p Help Receive Real-Time Help Create a Freelance Project Hire for a Full Time Job Ways to Get Help relatedl Ask a Question Ask for Help Receive Real-Time Help fields update failed a ea Create a Freelance Project Hire for a Full Time Job Ways cdo a ea to Get Help Expand Search Submit Close Search Login Join Today Products BackProducts Gigs Live Careers

cdo message object error

Cdo Message Object Error table id toc tbody tr td div id toctitle Contents div ul li a href Cdo Message Error Handling Vbscript a li li a href Cdo Object To Send Email a li li a href Cdo Message Createmhtmlbody a li li a href Cdo Message To Multiple Recipients a li ul td tr tbody table p One relatedl games Xbox games PC could not access cdo message object games Windows games Windows phone games Entertainment All p h id Cdo Message Error Handling Vbscript p Entertainment Movies TV Music Business Education Business Students cdo object properties

cdo message 1 error 80070002

Cdo Message Error p error ' ' The system can't find the path specified The SitePoint Forums have relatedl moved You can now find them here This forum is now closed to new posts but you can browse existing content You can find out more information about the move and how to open a new account if necessary here If you get stuck you can get support by emailing forums sitepoint com If this is your first visit be sure to check out the FAQ by clicking the link above You may have to register before you can post click

cdo message 1 error 80040213

Cdo Message Error table id toc tbody tr td div id toctitle Contents div ul li a href Error e a li li a href Cdo Message Error a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers relatedl to any questions you might have Meta Discuss vba the workings and policies of this site About Us Learn more about error f Stack Overflow the company Business Learn more about hiring developers or posting ads with us Stack Overflow error Questions Jobs Documentation Tags Users Badges Ask Question x Dismiss

cdo message 1 error 800c0005

Cdo Message Error c p and get tips solutions from a community relatedl of IT Pros Developers It's quick easy CreateMHTMLBody P n a Tom Nolan I am having some trouble with the ASP Script that I have written It will e-mail me Internet pages and HTML Code just fine but when I try to have it send an Intranet page which is in the same directory I get an error This code does not work myMail CreateMHTMLBody file mmcchapdc pcfiles intraday center ht m This is what I get CDO Message error ' c ' The system cannot locate

cdo message 1 error 80070003

Cdo Message Error table id toc tbody tr td div id toctitle Contents div ul li a href Cdo Message Error a li ul td tr tbody table p here for a quick overview of the site relatedl Help Center Detailed answers to any questions cdo message erreur you might have Meta Discuss the workings and policies of this asp error site About Us Learn more about Stack Overflow the company Business Learn more about hiring developers cdo message error the system cannot find the path specified or posting ads with us Stack Overflow Questions Jobs Documentation Tags Users Badges

cdo message on error resume next

Cdo Message On Error Resume Next table id toc tbody tr td div id toctitle Contents div ul li a href cdo message Error Handling a li ul td tr tbody table p Unanswered Topics td Wrox Programmer Forums ASP NET and ASP ASP Classic ASP Active Server Pages relatedl ASP Pro Code Clinic CDO Email cdo message error codes Errors not trapped by On Error User Name Remember Me Password Reminder p h id cdo message Error Handling p Password Register Register FAQ Members List Calendar Today's Posts Search ASP Pro Code cdo error Clinic As of Oct this

cdo message 1 error 80040218

Cdo Message Error p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us relatedl Learn more about Stack Overflow the company Business Learn more about hiring developers or posting ads with us Stack Overflow Questions Jobs Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of million programmers just like you helping each other Join them it only takes a minute Sign up addattachment not working with none standard file extensions

cdo message 1 error 80070020

Cdo Message Error p van GoogleInloggenVerborgen veldenZoeken naar groepen of berichten p p use If this is your first visit be sure to check out the FAQ by clicking the link above You may have to register before relatedl you can post click the register link above to proceed To start viewing messages select the forum that you want to visit from the selection below Results to of Thread cdo attach fails - file in use Tweet Thread Tools Show Printable Version Subscribe to this Thread hellip Display Linear Mode Switch to Hybrid Mode Switch to Threaded Mode Aug th

cdo message error 8004020e

Cdo Message Error e table id toc tbody tr td div id toctitle Contents div ul li a href Error a li li a href Run Time Error f a li li a href Error a li ul td tr tbody table p here for a quick overview of the relatedl site Help Center Detailed answers to any cdo message error questions you might have Meta Discuss the workings and policies of p h id Error p this site About Us Learn more about Stack Overflow the company Business Learn more about hiring p h id Run Time Error f

cdo message 1 error 8004020c

Cdo Message Error c p tjbcr Jan Thread Status Not open relatedl for further replies tjbcr I have a form on an asp page to send the clients thier usernames and passwords the code I am using worked on another client's site hosted elsewhere but the modified code does not seem to work on discountasp I get the following error message CDO Message error ' c' At least one recipient is required but none were found asp send password asp line Below is the code Any suggestions Dim LostPassword EmailParam LostPassword EmailParam me myemail com If Request Form EmailAddress Then

cdo message 1 error 800c000d the specified protocol is unknown

Cdo Message Error c d The Specified Protocol Is Unknown p Set objMessage CreateObject CDO Message then fill-in Sender Subject and Recipient To fields of the headers and the body text which can be either relatedl plain text or HTML You can also add a file attachment You then use the Send method to send the email Below I'll show all three types of emails and how to send an email using a remote SMTP server in the event you are not running your own I've added and example to illustrate how to request a return receipt and delivery status

cdo message 1 error 800c000d

Cdo Message Error c d p here for a quick overview of the site Help Center Detailed answers relatedl to any questions you might have Meta Discuss cdo message error c d the specified protocol is unknown the workings and policies of this site About Us Learn more cdo message attachment about Stack Overflow the company Business Learn more about hiring developers or posting ads with us Stack Overflow Questions Jobs Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of million programmers just like you helping each other Join them

cdo message 1 error 8004011b

Cdo Message Error b p Help Receive Real-Time Help Create a Freelance Project Hire for a Full Time Job Ways to Get Help Ask a Question Ask for Help Receive Real-Time Help Create relatedl a Freelance Project Hire for a Full Time Job Ways to Get Help Expand Search Submit Close Search Login Join Today Products BackProducts Gigs Live Careers Vendor Services Groups Website Testing Store Headlines Experts Exchange Questions CDO error - CDO Message error ' b err number - Want to Advertise Here Solved CDO error - CDO Message error ' b err number - Posted on -

createobject cdo message internal server error

Createobject Cdo Message Internal Server Error table id toc tbody tr td div id toctitle Contents div ul li a href Set Omsg Createobject Cdo Message a li li a href Vbscript Cdo Message a li li a href Cdo Message Visual Basic a li ul td tr tbody table p for Help Receive Real-Time Help Create a Freelance Project Hire for a Full Time Job Ways to Get Help Ask a Question Ask for Help Receive Real-Time Help Create a Freelance Project Hire for a relatedl Full Time Job Ways to Get Help Expand Search Submit wscript createobject cdo

cdo error 80040213

Cdo Error table id toc tbody tr td div id toctitle Contents div ul li a href Cdo Message Error The Pickup Directory Path Is Required And Was Not Specified a li li a href Error a li li a href The Transport Failed To Connect To The Server Gmail a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed relatedl answers to any questions you might have Meta cdo message Discuss the workings and policies of this site About Us Learn cdo message more about Stack Overflow the company Business

cdo error message

Cdo Error Message table id toc tbody tr td div id toctitle Contents div ul li a href Cdo Message Properties a li li a href Cdo Message Attachment a li li a href Cdo Message Createmhtmlbody a li ul td tr tbody table p resources Windows Server resources Programs MSDN subscriptions Overview Benefits Administrators Students Microsoft Imagine Microsoft Student Partners ISV Startups TechRewards Events Community Magazine Forums Blogs Channel Documentation relatedl APIs and reference Dev centers Retired content Samples We re sorry cdo message error handling The content you requested has been removed You ll be auto redirected in

cdo error messages

Cdo Error Messages table id toc tbody tr td div id toctitle Contents div ul li a href Cdo Message Error Handling Vbscript a li li a href Cdo Message To Multiple Recipients a li li a href Cdo Message Body a li li a href Cdo Message Configuration Fields a li ul td tr tbody table p games PC games p h id Cdo Message Error Handling Vbscript p Windows games Windows phone games Entertainment All Entertainment cdo message attachment Movies TV Music Business Education Business Students educators cdo message createmhtmlbody Developers Sale Sale Find a store Gift cards

cdo message 1 error 80040222

Cdo Message Error table id toc tbody tr td div id toctitle Contents div ul li a href Cdo Message Pickup Directory Path a li li a href Cdo Message Error a li li a href Error f a li li a href Adodb Fields Error a ea a li ul td tr tbody table p Web Platform Installer Get Help Ask a Question in our Forums More Help Resources relatedl Blogs Forums Home IIS NET Forums IIS and classic asp cdo message error Above Classic ASP Classic ASP IIS and specifying a pickup directory p h id Cdo Message

cdo message 1 error 80070005

Cdo Message Error table id toc tbody tr td div id toctitle Contents div ul li a href Cdo Message Error Access Is Denied a li li a href Cdo Message Error a li li a href Classic Asp Send Email a li ul td tr tbody table p - ASP I'm at my wits end There are a ton of people out there that are receiving the following error CDO Message error ' ' and a number of relatedl solutions have been suggested by MS and by others but nothing cdo message error acceso denegado is working for me

cdo.message.1 unknown error

Cdo message Unknown Error p here for a quick overview of the site Help Center Detailed answers to any relatedl questions you might have Meta Discuss the workings and cdo message error access is denied policies of this site About Us Learn more about Stack Overflow the could not access cdo message object company Business Learn more about hiring developers or posting ads with us Stack Overflow Questions Jobs Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of million programmers just like you helping each other Join them it only

error could not access cdo message

Error Could Not Access Cdo Message table id toc tbody tr td div id toctitle Contents div ul li a href Could Not Access Cdo Message Object a li li a href Cdo Message Attachment a li li a href Cdo Message Body a li li a href Cdo Message Configuration Fields a li ul td tr tbody table p raquo Advanced Samples raquo Fixing System Web Mail raquo relatedl More Resources raquo RFCs raquo p h id Could Not Access Cdo Message Object p Third Party Products raquo Complete FAQ raquo Submit Comments raquo About cdo message error handling

error could not access cdo message object

Error Could Not Access Cdo Message Object table id toc tbody tr td div id toctitle Contents div ul li a href Cdo Error Codes a li li a href Cdo message Vbscript a li li a href Cdo message Properties a li ul td tr tbody table p games PC games cdo message error handling Windows games Windows phone games Entertainment All Entertainment cdo message the transport failed to connect to the server Movies TV Music Business Education Business Students educators p h id Cdo Error Codes p Developers Sale Sale Find a store Gift cards Products Software services