Jump to content

Error using CDO.Message


Recommended Posts

I get an error with the following code, but oddly enough, only when I have installed SciTE4AutoIt3.exe. If I uninstall it, it works fine. Here's the snippet of code:

$oMessage = ObjCreate("CDO.Message")
With $oMessage
    .Subject = """" & $EmailSubject & """"
    .From = "anyone@gmail.com"
    .To = "anyone@gmail.com"
    .TextBody = """" & $EmailBody & """"
    .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
    .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = $SMTPServer
    .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = $cdoBasic
    .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = $SMTPLogon
    .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = $SMTPPassword
    .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = $SMTPPort
    .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = $SMTPSSL
    .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60
    .Configuration.Fields.Update
    .Send
EndWith

 

the error I get when try to run it is "error: missing separator character before keyword." and the carat is at the T in .To.

If I uninstall version 14.04.05.11 of SciTE4Autoit3 it compiles just fine. Any ideas on this one?

 

Link to comment
Share on other sites

That's a bug in Au3Check and is described here

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

  • Developers

Replace your au3check with the current beta version as it has a bug in it and reported many times..

Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

  • 2 months later...

Search the forum for this error and you will find a lot of links to the download URL.

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...