Ok so here's what I'm trying to do:
1. You press submit on my php donation form page, and when you press submit it goes to a process.php but within the IF statement I have it to where it sends my client an HTML email.
2. What I want my HTML email (in a table) to do is get some of the info from the form. So within the HTML email table in my <td> i have something like:
<?php echo $_GET["FirstName"]; ?>
- Will this work or how should I go about it?