I am about as new as they come to this !! 🙂
Here is my issue - I have a form built that sends over 2 data elements (just to get this working)... I have it going to HTML format in the email just fine - my problem is -
My data elements are not coming over within the HTML format - since it doesn't understand what $name means - it takes it literally ----- HOW can I query through my data elements and show them in the email bolded, underlinded - however I want ?
if I don't use html - I get my values using this code:
$message .= "${key}:\r\n${value}\r\n\r\n";
(key is the name of the field in the array and value is what was entered in that field on the form)
BUT if I use this code below I get HTML output - BUT no values:
$message = '
<html>
<body>
<p><b>Dog Submission Form</b></p>
<table>
<tr>
<td> <b>${key} :</b></td><td>${value}</td>
</tr>
</table>
</body>
</html>
';
help !!