this works, but the email has no sender or return address
how do i add one??
$forminfo = "blah blah";
$from_name = "me";
$from_address = "a@b.com";
$subject = "blah blah";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: ".$from_name." <".$from_address.">\r\n";
$headers .= "Reply-To: ".$from_name." <".$from_address.">\r\n";
$headers .= "X-Priority: 1\r\n";
$headers .= "X-MSMail-Priority: High\r\n";
$headers .= "X-Mailer: iCEx Networks HTML-Mailer v1.0";
mail("someone@domain.com", $subject, $forminfo, $headers);