Search found 32 matches: textbody

Return to advanced search

Enviar Correos CDO con fwh2307

... CREATEOBJECT ( "CDO.Message" ) WITH OBJECT oMsg :Configuration = oCfg :From = cFrom :To = cTo :CC = cCC :BCC = cBCC :Subject = cSubject :TextBody = cMsg For x := 1 To Len( aAttach ) if aAttach[x] <> NIL :AddAttachment(AllTrim(aAttach[x])) endif Next :Send() END WITH lRet := .t. ...
by EASYSOFT
Mon Aug 21, 2023 5:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Enviar Correos CDO con fwh2307
Replies: 15
Views: 892

Sample working send mail

... ) WITH OBJECT oEmailMsg :From := alltrim(_from) :To := alltrim(_to) :CC := "" :BCC := "" :Subject := _subject :TextBody := _textbody :AddAttachment( ALLTRIM( "c:\test0.prg" ) ) WITH OBJECT :configuration:Fields :Item( cSchema + "smtpserver" ...
by Romeo
Tue May 17, 2022 10:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sample working send mail
Replies: 11
Views: 999

Re: Send EMail Within FW Appplication....

... = cSubject IF !EMPTY( aCc ) FOR i = 1 TO LEN( aCc ) IF i > 1 THEN cCc += ";" cCc += aCc[ i ] NEXT oMsg:CC = cCc ENDIF IF !lHtml oMsg:TextBody = cMessage ELSE oMsg:HTMLBody = cMessage ENDIF IF !EMPTY( aAttach ) FOR i = 1 TO LEN( aAttach ) oMsg:AddAttachment( aAttach[ i ] ) NEXT ENDIF ...
by RiazKhan
Tue Jun 08, 2021 7:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Send EMail Within FW Appplication (RESOLVED)
Replies: 18
Views: 3137

Re: Mail TLS 1.2 LegalMail Fatt Elettronica

... "xxx1960@legagmail.it" :To := "xxx1960@legagmail.it" :CC :="" :BCC :="" :Subject := "Soggetto" :TextBody := "Testo del messaggio" :AddAttachment(hb_curdrive()+":\"+curdir()+"\test.txt" ) WITH OBJECT :configuration:Fields ...
by Romeo
Wed Jul 03, 2019 5:13 pm
 
Forum: All products support
Topic: Mail TLS 1.2 LegalMail Fatt Elettronica
Replies: 23
Views: 13697

Re: Mail TLS 1.2 LegalMail PEC

... "xxx1960@legagmail.it" :To := "xxx1960@legagmail.it" :CC :="" :BCC :="" :Subject := "Soggetto" :TextBody := "Testo del messaggio" :AddAttachment(hb_curdrive()+":\"+curdir()+"\test.txt" ) WITH OBJECT :configuration:Fields ...
by Romeo
Wed Jul 03, 2019 4:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mail TLS 1.2 LegalMail PEC
Replies: 4
Views: 739

Re: Mail TLS 1.2 LegalMail Fatt Elettronica

... "xxx1960@legagmail.it" :To := "xxx1960@legagmail.it" :CC :="" :BCC :="" :Subject := "Soggetto" :TextBody := "Testo del messaggio" :AddAttachment(hb_curdrive()+":\"+curdir()+"\test.txt" ) WITH OBJECT :configuration:Fields ...
by Romeo
Wed Jul 03, 2019 12:05 pm
 
Forum: All products support
Topic: Mail TLS 1.2 LegalMail Fatt Elettronica
Replies: 23
Views: 13697

Mail TLS 1.2 LegalMail PEC

... "xxx1960@legagmail.it" :To := "xxx1960@legagmail.it" :CC :="" :BCC :="" :Subject := "Soggetto" :TextBody := "Testo del messaggio" :AddAttachment(hb_curdrive()+":\"+curdir()+"\test.txt" ) WITH OBJECT :configuration:Fields ...
by Romeo
Wed Jul 03, 2019 6:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mail TLS 1.2 LegalMail PEC
Replies: 4
Views: 739

Re: Mail TLS 1.2 LegalMail Fatt Elettronica

... "xxx1960@legagmail.it" :To := "xxx1960@legagmail.it" :CC :="" :BCC :="" :Subject := "Soggetto" :TextBody := "Testo del messaggio" :AddAttachment(hb_curdrive()+":\"+curdir()+"\test.txt" ) WITH OBJECT :configuration:Fields ...
by Romeo
Tue Jul 02, 2019 7:41 pm
 
Forum: All products support
Topic: Mail TLS 1.2 LegalMail Fatt Elettronica
Replies: 23
Views: 13697

Mail TLS 1.2 LegalMail Fatt Elettronica

... ) WITH OBJECT oEmailMsg :From := alltrim(_from) :To := alltrim(_to) :CC := "" :BCC := "" :Subject := _subject :TextBody := _textbody for _j:=1 to len(_arrattach) _cfile:=_arrattach[_j] :AddAttachment(_cfile) next _j WITH OBJECT :configuration:Fields :Item( cSchema ...
by Romeo
Tue Jul 02, 2019 4:39 pm
 
Forum: All products support
Topic: Mail TLS 1.2 LegalMail Fatt Elettronica
Replies: 23
Views: 13697

Re: Invio Posta PEC

... :To := "pincopalla@pec.it" :CC := "" :BCC := "" :Subject := ALLTRIM( "ALGO" ) :TextBody := "CUERPITO" :AddAttachment( ALLTRIM( "c:\test.prg" ) ) WITH OBJECT :configuration:Fields :Item( cSchema + "smtpserver" ...
by Romeo
Fri Sep 21, 2018 3:54 pm
 
Forum: All products support
Topic: Invio Posta PEC
Replies: 4
Views: 1490

Re: Unattended e-mails via Outlook 365

... // Set email subject oMail.Subject = "test email from office 365 account"; // Set email body oMail.TextBody = "this is a test email sent from c# project."; // Your Office 365 SMTP server address, // You should get it from outlook web access. ...
by Rick Lipkin
Thu Jan 05, 2017 7:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unattended e-mails via Outlook 365
Replies: 5
Views: 2766

Re: email CDO caracter problem

... CREATEOBJECT ( "CDO.Message" ) WITH OBJECT oMsg :Configuration = oCfg :From = cFrom :To = cTo :CC = cCC :BCC = cBCC :Subject = cSubject :TextBody = cMsg For x2 := 1 To Len( cAttach ) if cAttach[x2] <> NIL :AddAttachment(cAttach[x2]) endif Next :Send() END WITH lRet := .t. CATCH ...
by Wanderson
Wed May 25, 2016 12:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: email CDO caracter problem
Replies: 13
Views: 1977

CDO email

... CREATEOBJECT ( "CDO.Message" ) WITH OBJECT oMsg :Configuration = oCfg :From = cFrom :To = cTo :CC = cCC :BCC = cBCC :Subject = cSubject :TextBody = cMsg For x := 1 To Len( cAttach ) if cAttach[x] <> NIL :AddAttachment(cAttach[x]) endif Next :Send() END WITH lRet := .t. CATCH // ...
by Wanderson
Tue Jun 02, 2015 4:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: CDO email
Replies: 2
Views: 552

Re: no me funciona CDOSYS, gmail

... "CDO.Message" ) With Object oMsg :Configuration := oCfg :From := AllTrim( cFrom ) :To := AllTrim( cTo ) :Subject := AllTrim( cSubject ) :TextBody := AllTrim( cBody ) For nEle := 1 To Len( aAttach ) if File( AllTrim( aAttach[ nEle ] ) ) :AddAttachment := AllTrim( aAttach[ nEle ] ) else ...
by noe aburto
Fri May 29, 2015 1:42 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: no me funciona CDOSYS, gmail
Replies: 5
Views: 689

usando CDOSYS marca error, mail

... "CDO.Message" ) With Object oMsg :Configuration := oCfg :From := Trim( cFrom ) :To := Trim( cTo ) :Subject := Trim( cSubject ) :TextBody := Trim( cBody ) For nEle := 1 To Len( aAttach ) :AddAttachment := AllTrim( aAttach[ nEle ] ) Next If ! Empty( cBCC ) :BCC := Trim( cBCC ) ...
by noe aburto
Tue May 12, 2015 2:15 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: usando CDOSYS marca error, mail
Replies: 4
Views: 1132
Next

Return to advanced search