I'm trying to solve this puzzle here. The contact form on this page (http://www.b3studios.co.uk/) uses AJAX and PHP. I copied all the code and trying to make it work (reverse engineering PHP). I'm not sure how the PHP file should look like to handle the data given by AJAX. I tried the following PHP file:

<?php
$sender = $email;
$receiver = “test@email.com”;
$email_body = “Name: $name \nEmail: $email \nMessage: $message”;

if( mail( $receiver, $subject, $email_body, “From: $sender\r\n” .
“Reply-To: $sender \r\n” . “X-Mailer: PHP/” . phpversion()) )
{
echo “Success! Your message has been sent. Thank You.”;
}
else
{
echo “Your message cannot be sent.”;
}
?>

After pressing "Send Message" it gets stuck at sending message.... Any suggestions to troubleshoot would be greatly appreciated.

link|improve this question
What happens if you just test the PHP page? Are you sure that you have mail functionality enabled on your server? – sdleihssirhc Aug 17 '11 at 6:53
The javascript used to call the PHP using AJAX will be apreciated to knwon the method used to call the php file , pass all the variables and the spected return data ( string text, json data, xml data,...) – Dubas Aug 17 '11 at 7:12
'mail' functionality is enabled. – chris f Aug 18 '11 at 1:53
feedback

1 Answer

I am pretty sure you copied the code with those ugly double quotes (MSWord quotes), you should chage to "

try

<?php
    $sender = $email;
    $receiver = "test@email.com";
    $email_body = "Name: $name \nEmail: $email \nMessage: $message";

    if( mail( $receiver, $subject, $email_body, "From: $sender\r\n" . "Reply-To: $sender \r\n" . "X-Mailer: PHP/" . phpversion()) )
    {
        echo "Success! Your message has been sent. Thank You.";
    } else {
        echo "Your message cannot be sent.";
    }
?>
link|improve this answer
I'm using the correct quotes "@" – chris f Aug 18 '11 at 1:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.