Eagles Way Church 100 Hudson Road Griffin, GA 30224

[insert_php]
/*Here we are going to declare the variables*/
$Name = $_POST[‘Name’];
$Email = $_POST[‘Email’];
$Comment = $_POST[‘Comment’];
//Save visitor name and entered message into one variable:
$formcontent=”Name: $Name\n\nEmail: $Email\n\nComment: $Comment”;
$recipient = “doss.will@gmail.com”;
$subject = “$Name is about to donate money.”;
$mailheader = “From: $Email\r\n”;
$mailheader .= “Reply-To: $Email\r\n”;
$mailheader .= “MIME-Version: 1.0\r\n”;
mail($recipient, $subject, $formcontent, $mailheader) or die(“Failure!”);
[/insert_php]

Thank you, [insert_php] echo $_POST[“Name”]; [/insert_php]!

I understand your reason for giving is:
Comment: [insert_php] echo $_POST[“Comment”]; [/insert_php]

Click the button below to enter amount and payment info.