Monday 15 December 2008 10:40:54 am
Hello Maybe this help
1. add two email attribute to "form class" (id of the attribute "email_one", "email_two") 2. override the template "/content/collectedinfomail/form.tpl" and then add this code
send to first email
{set-block scope=root variable=email_receiver}{$object.data_map.email_one.content}{/set-block}
send to second email
{append-block scope=root variable=email_cc_receivers}{$object.data_map.email_two.content}{/append-block}
<b>Or without class change</b> 1. override the template "/content/collectedinfomail/form.tpl" and then add this code
{set-block scope=root variable=email_receiver}[email protected]{/set-block}
send to second email
{append-block scope=root variable=email_cc_receivers}[email protected]{/append-block}
|