Search found 16 matches: oattach

Return to advanced search

Outlook 2010, problemi nell'invio tramite ole

... 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: 733

Re: Outlook

... for each oItem In oCMSFolder:Items cSender := '' cSubject := '' cAttach := '' cSender := oItem:sendername cSubject := oItem:subject for each oAttach In oItem:Attachments cAttach := oAttach:filename next aadd(aData,left(alltrim(cSender) + space(35),35) + '|' + ; left(alltrim(cSubject) + space(35),35) ...
by Colin Haig
Sun Mar 14, 2010 4:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Outlook
Replies: 2
Views: 669

Re: save Attachments from outllook application object

... ) local ziel := "" local oDatei local I := 0 local cNotiz := "cNotiz" local oInhalt local cDatei := "" Local oAttach := 1 *-------------------------------------------------------------------------- oMail := myOlExp:Selection:Item(1) oMail:SaveAs ( "c:\temp\" ...
by Silvio
Wed Jan 27, 2010 9:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: save Attachments from outllook application object
Replies: 3
Views: 812

Re: Outlook OLE

... I am still having issues with ole - it is crashing after diplaying the date after about 12 messages. for each oItem In oInbox:Items for each oAttach In oItem:Attachments if valtype(oItem:ReceivedTime) == 'D' MsgInfo(oItem:ReceivedTime) else MsgInfo(valtype(oItem:ReceivedTime)) endif oAttach:SaveAsFile('c:\test\' ...
by Colin Haig
Sun Nov 08, 2009 12:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Outlook OLE
Replies: 19
Views: 6167

Re: Email through outlook

... "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: 1322

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: 1106

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: 576

Re: To send email with 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") oRecip:Invoke("Add", ...
by E. Bartzokas
Thu Aug 10, 2006 4:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To send email with image
Replies: 6
Views: 1964

To send email with 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") oRecip:Invoke("Add", ...
by Kleyton
Wed Aug 09, 2006 12:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To send email with image
Replies: 6
Views: 1964

To send email with 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") oRecip:Invoke("Add", ...
by Kleyton
Wed Aug 09, 2006 12:35 pm
 
Forum: FiveWin for CA-Clipper
Topic: To send email with image
Replies: 4
Views: 1883

... 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: 3802

... "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: 10660

... 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: 2357

Re: Interactive mail via Outlook

... 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: 2357

Interactive mail via Outlook

... 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 Marco Turco
Mon Feb 20, 2006 2:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interactive mail via Outlook
Replies: 8
Views: 2357
Next

Return to advanced search