Page 1 of 1

Send Email Task HTML Format

Posted: Thu Jan 30, 2014 8:29 am
by Joerg
Hi,
Is it possible to send more pretty formatted :-) mails in HTML format or using such templates like GAS secure mail use with director? I've seen that anyone has asked a very similar question.
Are there any examples?

We need this to send mails in a professional look to our customers.

Joerg

Re: Send Email Task HTML Format

Posted: Wed Feb 05, 2014 4:38 pm
by Support_Rick
Please see the example project below...
Code: Select all
<project name="test HTML in e-mail" mainModule="Main" version="2.0">
  <module name="Main">
    <sendEmail resourceId="Linoma" toList="[email protected]" version="2.0">
      <from address="[email protected]" />
      <subject>
        <![CDATA[test HTML]]>
      </subject>
      <message contentType="text/HTML">
      <![CDATA[
<br /> 
<div style="font-family:Times New Roman; font-size:10; color:red">Dear Recipient, </div>
<br /> 
<br /> 
<div style="font-family:Arial; font-size:15">Beginning this Friday, we will begin emailing the weekly marketing bulletin instead of delivering it with your order.  Our intention is to make this available to you via email each Friday afternoon.  All New Items, Allowances, Price Changes, Promotions, etc. reflected in the bulletin will be effective for deliveries beginning the following Monday.</div>   
<br /> 

<div style="font-family:Arial; font-size:19"><b>If this is not the correct email address you wish to receive this publication, please reply to this email with the correct email address and contact information.</b></font> 

      ]]>
      </message>
    </sendEmail>
  </module>
</project>