Can php conditionals be used in the email template that is sent to the user?
For example.
<?
$color = "blue";
if($color == "blue") {
echo "the frog has power";
}
else {
echo "Php Rocks!";
}
?>
I know html markup can be used in the email template and the form itself like
<div>Cheese.jpg</div>
Can
<? echo "cheese"; ?>
be used in the form also?
