Email Campaign to Contacts

<# // Page: Contacts-campaign // This EASE page produces a list of contacts from the "Easy Contacts" Google Sheet and sends a mail to each // This page: // send an email to the Lists of contacts #>


<# start list for googlespreadsheet "Easy Contacts"; include all columns from "Sheet1"; #>

<# start header #>

Sending Campaign Email to these Contacts:

<# end header #>

<# start row #>

<# send email; from_name = "bob@cloudward.com"; to = "<# Email #>“;
subject = “We would love to get your feedback”;
type = “text”; // text or html
body = “Dear <#[ First Name ]#>,

Thank you for taking the time to signup with Cloudward.
We would like to understand your problems

Why we you signed up, the problems you thought we would solve,

Best,
Management

“;
#>
<# end row #>

<# start footer #>

Name Email Phone Company State Industry Previous Purchase
<# First Name #> <# Last Name #> <# Email #> <# Phone #> <# Company #> <# State #> <# Industry #> <# Previous Purchase #>

<# end footer #>

<# no results #>

There are no contact results in this list yet…

+Add New Contact
<# end no results #>

<# end list #>