Search found 166 matches: sendmail

Return to advanced search

To send email with image

it has as to below insert 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) ...
by Kleyton
Wed Aug 09, 2006 12:35 pm
 
Forum: FiveWin for CA-Clipper
Topic: To send email with image
Replies: 4
Views: 1897

My sendmail is work well.

Dear Kleyton, This is my sendmail procedure is working perfectly for me and it may help. *-----------------------------* Static Function SendMails(aRecNo) local mDlg, oGet[4], oBtn[2] local lSave := .F. local cAtt, cSub, cText local cHost, ...
by dutch
Wed Jul 19, 2006 7:14 am
 
Forum: FiveWin for CA-Clipper
Topic: Send Email
Replies: 8
Views: 4606

... a utility installed to overide the security 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( ...
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: 3835

Ruben,
If I purchase easypreview,could I intergrade zip,sendmail(hbzlib.dll,mail.dll,nconvert.exe ,epreview.exe,epreview.dbf ) into my app ( link a lib or dll file)? now there are too many files.

Regards!
Shuming Wang
by ShumingWang
Tue May 02, 2006 11:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ways to save report to a file and easily open
Replies: 52
Views: 18249

Como se convierte font de Twindows a FONT DE TPRINTER

... METHOD VistaCompleta() METHOD Visualizar INLINE ::oWord:Visible := .T. METHOD Write( cTexto, cFuente, cSize, lBold, lShadow, nColor ) METHOD Sendmail( lAttach ) // [ Vikthor ] METHOD HeaderFooter( nOption ) // [ Vikthor ] METHOD OpenDataSource( cFile ) // [ Vikthor ] METHOD AddField( cField ...
by Vladimir Zorrilla
Tue Apr 18, 2006 6:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como se convierte font de Twindows a FONT DE TPRINTER
Replies: 5
Views: 3829

... to do with fwh version (i have 2.7 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 := ...
by ask
Tue Feb 21, 2006 12:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interactive mail via Outlook
Replies: 8
Views: 2404

Re: Interactive mail via Outlook

... email start immediatly without the 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 := ...
by ask
Mon Feb 20, 2006 2:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interactive mail via Outlook
Replies: 8
Views: 2404

Interactive mail via Outlook

... email start immediatly without the 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 := ...
by Marco Turco
Mon Feb 20, 2006 2:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interactive mail via Outlook
Replies: 8
Views: 2404

Inviare una mail in modo interattivo tramite Outlook

... inviare la mail utilizzando MAPI in quanto Outlook Express per esempio non supporta i comandi OLE. Grazie in anticipo. Saluti Marco Turco FUNCTION SendMail() LOCAL oOutLook,oMailItem,oRecip,oAttach oOutLook := CreateObject( "Outlook.Application" ) oMailItem := oOutLook:CreateItem( 0 ) oRecip := ...
by Marco Turco
Mon Feb 20, 2006 12:17 pm
 
Forum: All products support
Topic: Inviare una mail in modo interattivo tramite Outlook
Replies: 0
Views: 643

... function is inside win32ole.prg that is in rtl.lib .I work with xharbour and all is fine (if you use harbour try to change it to xharbour) . I use sendmail a long time now and works perfectly. Bellow is win32ole.prg that can be found at http://www.xharbour.org : /* * $Id: win32ole.prg,v 1.84 2005/06/01 ...
by ask
Tue Dec 27, 2005 10:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to send email from within FWH25?
Replies: 29
Views: 14184

... ) and works great .Use Clickyes (Read this article http://www.contextmagic.com/express-clickyes/) software too if you like the below code function SendMail(cText,ato,cSubject,afiles,bodyformat,mailfrom) local oMail,i:=0,oItem default bodyformat:=1 oMail:= CREATEOBJECT( "outlook.application" ) oItem:=oMail:createitem(0) ...
by ask
Tue Dec 27, 2005 8:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to send email from within FWH25?
Replies: 29
Views: 14184

Re: How to send email from within FWH25?

... winexec("rundll32.exe url.dll,FileProtocolHandler mailto:"+cString) This one doesn't work winexec("Sendmail INVISIBLE SILENT SEND_TO "+; alltrim(customer->email)+" MESSAGE_FILE cMessage.txt "+; "SUBJECT "+cSubject) Any help would be appreciated! ...
by Richard Chidiak
Mon Dec 26, 2005 8:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to send email from within FWH25?
Replies: 29
Views: 14184

How to send email from within FWH25?

... winexec("rundll32.exe url.dll,FileProtocolHandler mailto:"+cString) This one doesn't work winexec("Sendmail INVISIBLE SILENT SEND_TO "+; alltrim(customer->email)+" MESSAGE_FILE cMessage.txt "+; "SUBJECT "+cSubject) Any help would be appreciated! ...
by John
Mon Dec 26, 2005 7:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to send email from within FWH25?
Replies: 29
Views: 14184

Fivewin and smtp

... TSmtp():New( cIP := GetHostByName( "smtp.ulg.ac.be" ) ) MsgWait("Mailing ", cIP,1 ) oOutMail:bDone = { || MsgWait("Done","Mailing ",1 ) } oOutMail:SendMail( "jacquet@tiscali.be",; // From { "jacquetlg@tiscali.be" },; // To "Test mail " ,; // Msg Text "Essai Mail depuis BMT " , ; // Subject {"c:\dmedi\test.doc"} ...
by jacquet philippe
Thu Dec 15, 2005 8:25 am
 
Forum: FiveWin for CA-Clipper
Topic: Fivewin and smtp
Replies: 4
Views: 1817

Toni, Envias algún documento adjunto ? He probado de las dos formas. Te adjunto el código: function SendMail() local oOutMail, cIP oWnd:SetMsg( "Sending Internet email..." ) WSAStartup() oOutMail := TSmtp():New( "smtp.midominio.com" ) oOutMail:bConnecting = {||oWnd:SetMsg( ...
by tsales
Mon Dec 12, 2005 8:00 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Comportamiento extraño con tSmtp.
Replies: 3
Views: 1067
PreviousNext

Return to advanced search