Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Submitting a form – always a hassle for me Re: Submitting a form – always a hassle for me

#73851
tannercampbell
Participant

So then:


$email = $_REQUEST;
$headers = "From: $email" . "rn";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "rn";
$emailbody = "$email has signed up for alerts from the Flock";

mail("[email protected]", "Flock Subscription", $emailbody, $headers);
?>

? I will see if this works and repost if I have another issue. Thanks, I appreciate you taking the time to help me out.