Page 1 of 1

binding variable in mail

Posted: Tue May 04, 2010 8:27 am
by alomari
Hi,

I have created a template for an email. and it contains the following:
DEAR $USERNAME
and i have imported csv file that contains firstnames and emails
how can i bind my variable ($USERNAME) to the values loaded from CSV.

Thanks

Posted: Tue May 04, 2010 8:35 am
by lord_alan
You need to use the AGN tags, not your own variables. The Manual has an excellent explanation of creating and using the templating system.

For your specific question:

Code: Select all

Dear [agnFIRSTNAME],
Should do the trick :-)

Al