Hi!
I've created a custom multiselect element.
Now I need to process selected data and paste it into Email template...
Don't know how to make it: receive array, process(format and paste into global variable (?) ) it and paste into template . In plain php it is like this:
Thank you!
I've created a custom multiselect element.
Now I need to process selected data and paste it into Email template...
Don't know how to make it: receive array, process(format and paste into global variable (?) ) it and paste into template . In plain php it is like this:
<?php
$test=$_POST['test']; /*select name*/
if ($test){
foreach ($test as $t)
{
echo 'You selected ',$t,'<br />';
}
}
?>
Thank you!