• Office Templates

    From cedarsystems@gmail.com@21:1/5 to All on Mon Mar 4 00:52:56 2019
    OK, I'm semi retired these days but, still doing some support/maintenance work so, be gentle with me.. <G>

    I have a client who wants to send emails from a Clarion (v8) app and, using the Softmasters Office Templates, it's pretty easy.

    Problem I have is that I am trying to insert a blank line into the HTML email body and, it just won't work..

    Tried the usual suspects (chr(13), 0D etc)

    Anyone got any ideas ?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From sandinzz@yahoo.com@21:1/5 to cedars...@gmail.com on Mon Mar 4 02:51:09 2019
    On Monday, March 4, 2019 at 9:52:57 AM UTC+1, cedars...@gmail.com wrote:
    OK, I'm semi retired these days but, still doing some support/maintenance work so, be gentle with me.. <G>

    I have a client who wants to send emails from a Clarion (v8) app and, using the Softmasters Office Templates, it's pretty easy.

    Problem I have is that I am trying to insert a blank line into the HTML email body and, it just won't work..

    Tried the usual suspects (chr(13), 0D etc)

    Anyone got any ideas ?

    Hi.

    You have to enter the whole content in html structure.
    Otherwise, new MSOutlook1.SetHTMLBody() will overwrite content entered in previous MSOutlook1.SetHTMLBody().
    Break <br> will create new line.

    Something like:

    MSOutlook1.CreateItem('mail')
    MSOutlook1.DisplayMessage()
    MSOutlook1.SetTo('destination@email.com')
    MSOutlook1.SetSubject('E-Mail Subject')
    MSOutlook1.SetHTMLBody('<html><h1><font color="ff0000">Something really ' &|
    'important happen</font><br>Office Templates v2 is'&|
    ' in your hands!<br>'&|
    ' <br>'&|
    ' Something wild!</html>')

    Zoran.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From cedarsystems@gmail.com@21:1/5 to All on Mon Mar 4 12:47:17 2019
    Thaks for that..

    I had tried the <BR> tag but, I didn't try using the HTML tags around the text.

    Will give it a go...

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From cedarsystems@gmail.com@21:1/5 to All on Mon Mar 4 13:00:55 2019
    Works a treat !

    Thanks

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From sandinzz@yahoo.com@21:1/5 to cedars...@gmail.com on Tue Mar 5 03:55:34 2019
    On Monday, March 4, 2019 at 10:00:56 PM UTC+1, cedars...@gmail.com wrote:
    Works a treat !

    Thanks

    I'm glad it works. :)

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)