PHP and HTML are interchangable. You can embed PHP into HTML and vice versa.
Here is my working code...
<?track_vars?>
<?php
$msg="Questions answered?\t$found_info\n";
$msg.="Message:\t$message\n\n";
$mailheaders = "From $sender_name\n";
$mailheaders .= "Reply to: $sender_email\n\n";
$mailheaders .= "Subject: $sender_subject\n\n";
mail("steve@yoursite.com", $sender_subject, $msg, $mailheaders);
mail("viktor@yoursite.com", $sender_subject, $msg, $mailheaders);
?>
<!doctype html public "-//w3c//dtd html 3.2//en">
<html>
<head>
<title>yoursite.Com Comments Acknoledgement Page</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body onload="" topmargin=0 leftmargin=0 marginwidth=0 marginheight=0 bgcolor=white>
<table border=0 width=760 cellpadding=0 cellspacing=0>
<tr><td colspan=2 width=760 height=150 background="images/top.gif" valign=top>
</tr>
<tr><td width=139 valign=top bgcolor=#31639C>
<img src="images/spacer.gif" width=3 height=50 border=0>
<P align="center"><a href="webstore/index.php"><font color="#ffffff" size=+1><B>Products</b></font></a></p>
<img src="images/spacer.gif" width=3 height=5 border=0>
<P align="center"><a href="testsite/index.html"><font color="#ffffff" size=+1><B>Test Sites</b></font></a></p>
<img src="images/spacer.gif" width=3 height=5 border=0>
<P align="center"><a href="reports/index.html"><font color="#ffffff" size=+1><B>Free Downloads</b></font></a></p>
<img src="images/spacer.gif" width=3 height=5 border=0>
<P align="center"><a href="forum/index.php"><font color="#ffffff" size=+1><B>Forum</b></font></a></p>
<img src="images/spacer.gif" width=3 height=5 border=0>
<P align="center"><a href="contactus.html"><font color="#ffffff" size=+1><B>Contact Us</b></font></a></p>
<img src="images/spacer.gif" width=3 height=5 border=0>
<P align="center"><a href="aboutus.html"><font color="#ffffff" size=+1><B>About Us</b></font></a></p>
<img src="images/spacer.gif" width=3 height=5 border=0>
<P align="center"><a href="index.html"><font color="#ffffff" size=+1><B>Home</b></font></a></p>
<img src="images/spacer.gif" width=3 height=75 border=0>
</td>
<td width=621><blockquote>
<center><FONT face=Arial color="#dd0000" size="+2">yoursite.Com Comments</FONT></center><P>
<?php
echo "<h1 align=center>Thank you, $sender_name</h1>";
echo "<P align=center>We appreciate your comments.</p>";
?>
</blockquote>
</td>
<td width=5>
</td>
</tr>
</table>
</body>
</html>