BTW, this is the entire code (and I made the changes as per your #2 comment):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body><?php
//This script is created by hotwebtools.com
//You can remain use this free service as long as you retain the credit link
//As we had spent hours on building this script for you, please respect our effort
//Thank you --- David Ausman 'Hotwebtools.com'
$mymail = 'info@spotfellas.com';
$cc = 'Form submitted from your website';
$body = ' ';
$from = 'FROM:' .$POST['t1'];
$from .= 'Reply-To:' .$POST['t1'];
$from .= 'X-MAILER: PHP'.phpversion();
$body .= 'Name: ';
$body .= $POST['t1'];
$body .= "\n";
$body .= 'Company: ';
$body .= $POST['t2'];
$body .= "\n";
$body .= 'Phone: ';
$body .= $POST['t3'];
$body .= "\n";
$body .= 'Email: ';
$body .= $POST['t4'];
$body .= "\n";
$body .= 'Comments: ';
$body .= $_POST['t5'];
$body .= "\n";
$send = mail("$mymail", "$cc", "$body", "$from");
///Redirect user to your homepage....
if($send)
{
echo '<html><head>';
echo '<meta http-equiv="refresh" content="0;URL=http://www.spotfellas.com/thankyou.html">';
echo '</head><body>Email send....';
echo '</body></html>';
}
?>
</body>
</html>