Search found 17 matches: orecip

Return to advanced search

Re: Always about Outlook and OLE

... := TOleAuto():New("Outlook.Application") oMailItem := oOutLook:CreateItem( 0 ) oMailItem:SendUsingAccount := "xxxx@yyy.zzz" oRecip := oMailItem:Recipients .. .. Any ideas ?
by Marco Turco
Fri Jun 13, 2014 10:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Always about Outlook and OLE
Replies: 6
Views: 1268

Always about Outlook and OLE

... the default account (nick@softwarexp.co.uk) oOutLook := TOleAuto():New("Outlook.Application") oMailItem := oOutLook:CreateItem( 0 ) oRecip := oMailItem:Recipients Thank you in advance
by Marco Turco
Tue Jun 10, 2014 9:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Always about Outlook and OLE
Replies: 6
Views: 1268

Outlook via ole

... in case it isn't running ? thank you **** TRY oOutLook := TOleAuto():New("Outlook.Application") oMailItem := oOutLook:CreateItem( 0 ) oRecip := oMailItem:Recipients CATCH MsgStop("Outlook isn't running.","Attention") return(-1) END
by Marco Turco
Tue Jun 10, 2014 9:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Outlook via ole
Replies: 0
Views: 287

Outlook 2010, problemi nell'invio tramite ole

... la mia routine di invio: FUNCTION Interactivemessage() paramet cSubject, cBody, aTo, aFiles, lDirectSend,lUseCC,cOrigin LOCAL oOutLook,oMailItem,oRecip,oAttach,i,lOffice,lMailMancante,cVar local nSelected,oDlg1 if lUseCC=NIL lUseCC:=.f. endif if lDirectSend=NIL lDirectSend:=.f. endif if cSubject=NIL ...
by Marco Turco
Fri Feb 11, 2011 8:13 am
 
Forum: All products support
Topic: Outlook 2010, problemi nell'invio tramite ole
Replies: 0
Views: 734

Re: Email through outlook

... #include "Mail.ch" FUNCTION Interactivemessage() paramet cSubject, cBody, aTo, aFiles, lDirectSend,lUseCC LOCAL oOutLook,oMailItem,oRecip,oAttach,i,lOffice,lMailMancante,cVar local nSelected,oDlg1 if lUseCC=NIL lUseCC:=.f. endif if lDirectSend=NIL lDirectSend:=.f. endif if cSubject=NIL ...
by Marco Turco
Tue Oct 27, 2009 12:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Email through outlook
Replies: 7
Views: 1325

Send an email using ccn

... a way to do this ? This is my current code: oOutLook := CreateObject( "Outlook.Application" ) oMailItem := oOutLook:CreateItem( 0 ) oRecip := oMailItem:Recipients oRecip:Add( "test@softwarexp.co.uk" ) oMailItem:Subject := "Subject" oMailItem:Body := "Mail ...
by Marco Turco
Mon Oct 05, 2009 8:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Send an email using ccn
Replies: 2
Views: 578

Re: FASTREPORT - MAILExport

... return("") FUNCTION Interactivemessage() paramet cSubject, cBody, aTo, aFiles, lDirectSend LOCAL oOutLook,oMailItem,oRecip,oAttach,i,lOffice,lMailMancante if lDirectSend=NIL lDirectSend:=.f. endif if cSubject=NIL cSubject:="" endif if cBody=NIL cBody:="" ...
by Marco Turco
Sat Aug 29, 2009 3:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FASTREPORT - MAILExport
Replies: 3
Views: 1108

Re: Enviar Correo con Habour.

He conseguido enviar correo ok, con el outlook asi con un ejemplo que vi : static function GeneraCorreo() LOCAL oOutLook,oMailItem,oRecip,oAttach oOutLook := TOleAuto():New("Outlook.Application") oMailItem := oOutLook:Invoke("CreateItem", 0) oRecip := oMailItem:Invoke("Recipients") ...
by Garbi
Fri Jan 16, 2009 11:17 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Enviar Correo con Habour.
Replies: 2
Views: 577

Re: To send email with image

... image in the sending of email in the example? #include "fivewin.ch" **************** FUNCTION SendMail ***************** LOCAL oOutLook,oMailItem,oRecip,oAttach oOutLook := TOleAuto():New("Outlook.Application") oMailItem := oOutLook:Invoke("CreateItem", 0) oRecip := oMailItem:Invoke("Recipients") ...
by E. Bartzokas
Thu Aug 10, 2006 4:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To send email with image
Replies: 6
Views: 1966

To send email with image

... image in the sending of email in the example? #include "fivewin.ch" **************** FUNCTION SendMail ***************** LOCAL oOutLook,oMailItem,oRecip,oAttach oOutLook := TOleAuto():New("Outlook.Application") oMailItem := oOutLook:Invoke("CreateItem", 0) oRecip := oMailItem:Invoke("Recipients") ...
by Kleyton
Wed Aug 09, 2006 12:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To send email with image
Replies: 6
Views: 1966

To send email with image

... image in the sending of email in the example? #include "fivewin.ch" **************** FUNCTION SendMail ***************** LOCAL oOutLook,oMailItem,oRecip,oAttach oOutLook := TOleAuto():New("Outlook.Application") oMailItem := oOutLook:Invoke("CreateItem", 0) oRecip := oMailItem:Invoke("Recipients") ...
by Kleyton
Wed Aug 09, 2006 12:35 pm
 
Forum: FiveWin for CA-Clipper
Topic: To send email with image
Replies: 4
Views: 1883

... warning when necessary but to install this utility on all my users machines is not practical. FUNCTION SendMail() LOCAL oOutLook,; oMailItem,; oRecip,; oAttach /* creating the OLE object */ TRY oOutLook := CreateObject( "Outlook.Application" ) CATCH Alert( "ERROR! Outlook not avialable." ) ...
by Gale FORd
Thu Jun 29, 2006 3:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: OLE & Outlook (How to translate this Delphi code)
Replies: 11
Views: 3804

... #include "FiveWin.ch" #include "Mail.ch" FUNCTION Interactivemessage() paramet cSubject, cBody, aTo, aFiles, lDirectSend LOCAL oOutLook,oMailItem,oRecip,oAttach,i if lDirectSend=NIL lDirectSend:=.f. endif if cSubject=NIL cSubject:="" endif if cBody=NIL cBody:="" endif if aFiles=NIL aFiles:=array(0,0) ...
by Marco Turco
Fri Mar 17, 2006 8:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MAPI and Outlook 2003
Replies: 28
Views: 10662

... february 2006 and xharbour 0.99.60) but the bellow example is working perfectly #include "fivewin.ch" FUNCTION SendMail() LOCAL oOutLook,oMailItem,oRecip,oAttach oOutLook := CreateObject( "Outlook.Application" ) oMailItem := oOutLook:CreateItem( 0 ) oRecip := oMailItem:Recipients oRecip:Add( "mail@mail.com" ...
by ask
Tue Feb 21, 2006 12:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interactive mail via Outlook
Replies: 8
Views: 2358

Re: Interactive mail via Outlook

... feature for the user to modify/integrate the email contents. Thanks in advance. Best Regards, Marco FUNCTION SendMail() LOCAL oOutLook,oMailItem,oRecip,oAttach oOutLook := CreateObject( "Outlook.Application" ) oMailItem := oOutLook:CreateItem( 0 ) oRecip := oMailItem:Recipients oRecip:Add( "noc@softwarexp.co.uk" ...
by ask
Mon Feb 20, 2006 2:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interactive mail via Outlook
Replies: 8
Views: 2358
Next

Return to advanced search