How to set Email Burst TO (PARAMETER1) from Data Model's Dataset values
Hi! In my data model, I have an email address field which i want to use for email bursting.
I know the SQL query format (see below) for setting up the bursting, but i don't know how to link that query to the data being retrieved so I can sue these emails in the TO parameter?
SELECT DISTINCT
:KEY as "KEY", /* what do I put here if the key is based on the data model values */
:P_TEMPLATE as TEMPLATE,
'en-AU' LOCALE,
'html' OUTPUT_FORMAT,
'EMAIL' del_channel,
USERS.EMAIL PARAMETER1, /* USERS table is in the datamodel */
:P_EMAIL_CC PARAMETER2,