I have this code:
mail ($_POST['to_address'], $_POST['subject'], $_POST['email'], FROM $_POST['from_address']);
How can I get the FROM address to work right?
Also, my header/redirect isn't working.
if ( $_POST['email_bttn'] ) {
mail ($_POST['to_address'], $_POST['subject'], $_POST['email'], FROM $_POST['from_address']);
header ( "Location: http://wwww.mysite.com/" );
exit;
}