Currently in the email template, the 'other form variables' appear together in a big chunk and use the variable name as a label for the value. These other variables just appear from a loop and there's no way to break them up and use them individually.
I'd like to be able to specify these variables and display them next to my own labels, or mix the variables with my own text.
In the past I have done something like this in php quite easily. But I don't know Perl at all so not sure how to do this for Xupload:
Code: Select all
This is how it is at the moment:
<varible name> : <variable value>
<varible name> : <variable value>
<varible name> : <variable value>
This is an example of the kind of thing I need:
"Hello" <variable value> Your address is : <variable value>
In php I would normally use something like:
<?php echo "Hello" .$_POST("Name"). "Your address is" .$_POST("Address"); ?>
How do I do this in Xupload?