Search found 41 matches: htmlbody

Return to advanced search

Re: New Fivewin with new PDF

... oEmailMsg:Cc := "" oEmailMsg:BCc := "" oEmailMsg:Subject := cSubject oEmailMsg:MDNRequested := FALSE oEmailMsg:HTMLBody := cBody If File( cAttach ) oEmailMsg:AddAttachment := cAttach Endif If lAttachCsv .AND. File( cCsvFile ) oEmailMsg:AddAttachment := cCsvFile ...
by byron.hopp
Tue Apr 05, 2022 7:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New Fivewin with new PDF
Replies: 12
Views: 936

Re: Automated Outlook e-mail and sending plain text

Dear Rick,

oMailItem:HtmlBody = cHTML

Use "<br>" instead of Chr( 10 )

and remember to use the typical HTML structure:

<html>
<head>
</head>
<body>
Your text goes here
</body>
</html>

You can use tables, colors, etc.
by Antonio Linares
Tue Oct 19, 2021 6:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Automated Outlook e-mail and sending plain text
Replies: 3
Views: 377

Re: Send EMail Within FW Appplication....

... 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 IF lNotification oMsg:Fields:Item( ...
by RiazKhan
Tue Jun 08, 2021 7:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Send EMail Within FW Appplication (RESOLVED)
Replies: 18
Views: 3070

Re: oMail:HTMLBody problem

The problem is solved, after updating Windows 8)
by Marc Vanzegbroeck
Sat Feb 01, 2020 9:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: oMail:HTMLBody problem
Replies: 5
Views: 810

Re: oMail:HTMLBody problem

... // Dica http://fivewin.com.br/index.php?/topic/24468-falta-pouco-para-o-email-ficar-legal-alguem-ajuda/#comment-273115      oMail:HTMLBody := MEMOREAD(ALLTRIM(_cHtml))   ENDIF   oMail:Send()RETURN .T.  
by karinha
Fri Jan 31, 2020 7:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oMail:HTMLBody problem
Replies: 5
Views: 810

Re: oMail:HTMLBody problem

...        :Fields:Update()            ENDIF            :HTMLBody := cMsg // + QuebraHTML + IF(!Empty(cImagem), cImagem1, "")            FOR X := 1 TO Len( aFiles ...
by karinha
Fri Jan 31, 2020 7:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oMail:HTMLBody problem
Replies: 5
Views: 810

Re: oMail:HTMLBody problem

...           :AddAttachment( cAttach )         end         :HTMLBody = cHtml      END WITH      oEmailMsg:Send()   CATCH oError      IF lMsgInfo  ...
by karinha
Fri Jan 31, 2020 6:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oMail:HTMLBody problem
Replies: 5
Views: 810

oMail:HTMLBody problem

Hi, I have a very strange problem with oMail:HTMLBody I allways used it without any problem. I have a customer that runs my program on a network. On 2 PC it's working fine, but on one PC the body is empty. All 3 PC's run the same EXE-file from ...
by Marc Vanzegbroeck
Fri Jan 31, 2020 6:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oMail:HTMLBody problem
Replies: 5
Views: 810

RTF to HTML for email

Hello,

Is it possible to convert the RTF created with richedit to HTML to create a HTMLBODY in the outlook object?

Thank you
by Marc Vanzegbroeck
Sat Jul 27, 2019 12:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RTF to HTML for email
Replies: 1
Views: 413

Re: Outlook en Preview

Hola, para introducir el mensaje en html prueba con:

oMail:htmlbody := tuTextoenhtml

La dirección del destinatario yo la pongo como:
oMail:to := direcciondecorreo

Un saludo.
by darioflores
Thu Feb 22, 2018 7:22 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Outlook en Preview
Replies: 1
Views: 432

Re: Formato Texto en HTML con Define Mail.

... sin cambio local ctext:= " " por local ctext o por local ctext:= "" Si que activa el formato de HTML (sin usar oMail:HtmlBody = ctext) pero el problema es que cuando envio el email , ni en enviados ni el receptor aparece nada de texto Espero haberme explicado. Si no ...
by Garbi
Sat Dec 30, 2017 10:54 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Formato Texto en HTML con Define Mail.
Replies: 8
Views: 1831

Re: Formato Texto en HTML con Define Mail.

...  else         DEFINE MAIL oMail ;         SUBJECT cName ;         TEXT ctext ;         FILES cFile, cFile ;         FROM USER   endif   oMail:HtmlBody = ctext      ACTIVATE MAIL oMail      // MsgInfo( oMail:nRetCode )  check the returned code!   endif   ::oMeta1:SetFocus()return nil
by Garbi
Sat Dec 30, 2017 10:46 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Formato Texto en HTML con Define Mail.
Replies: 8
Views: 1831

Re: Formato Texto en HTML con Define Mail.

Prueba así:

oMail:HtmlBody = cText
by Antonio Linares
Sat Dec 30, 2017 10:31 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Formato Texto en HTML con Define Mail.
Replies: 8
Views: 1831

Formato Texto en HTML con Define Mail. Ayuda

... un poco más, como le indico en este codigo que sea HTML, y si puede indicarle que coga la firma, ya coj.....do Si pongo me da error : // oMail:HtmlBody = cHTML     ->  Error BASE/1003  No existe la variable: CHTML METHOD SendEmail() CLASS TPreview   local oMail, cName, cFile,   ctext:= ...
by Garbi
Fri Dec 29, 2017 9:22 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Formato Texto en HTML con Define Mail.
Replies: 8
Views: 1831
Next

Return to advanced search