CDO.Message (method Send)

Post Reply
Natter
Posts: 1241
Joined: Mon May 14, 2007 9:49 am

CDO.Message (method Send)

Post by Natter »

Hi,

I wanted to use my old (2013) program to send messages to mailboxes to clients.

oEmlMsg := CREATEOBJECT ( "CDO.Message" )

WITH OBJECT oEmlMsg
..................................
END WITH

oEmlMsg:Send()

However, I get an error:

Error description: Error CDO.Message/3 DISP_E_MEMBERNOTFOUND: SEND

In other words, there is no Send() method in the object. What could it be ?
User avatar
cnavarro
Posts: 6557
Joined: Wed Feb 15, 2012 8:25 pm
Location: España
Been thanked: 3 times

Re: CDO.Message (method Send)

Post by cnavarro »

You have configured this?

Code: Select all | Expand


oEmail := CREATEOBJECT( "CDO.Configuration" )
.../...
 

and

Code: Select all | Expand


oEmailMsg := CREATEOBJECT ( "CDO.Message" )
        WITH OBJECT oEmailMsg
            :Configuration  := oEmail
.../...
 
Cristobal Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Natter
Posts: 1241
Joined: Mon May 14, 2007 9:49 am

Re: CDO.Message (method Send)

Post by Natter »

All this is done and worked well before. A strange mistake
User avatar
karinha
Posts: 7935
Joined: Tue Dec 20, 2005 7:36 pm
Location: São Paulo - Brasil
Been thanked: 3 times
Contact:

Re: CDO.Message (method Send)

Post by karinha »

What is the provider? Did you change the door? Changed Password? Changed from http to https? Check this out.

Regards, saludos.
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
Post Reply