Dear sir.,
i have a problem about my contact form in GODADDY hosting. i uplode flash contact form in my site. its not working. i am not getting mail from my website to my email account ie.. repose@repose.in
my website contact : http://repose.in/index-5.html
my web site : repose.in
in my php script given below
**********************************
<?php
$contact_name = $_POST['name'];
$contact_email = $_POST['email'];
$contact_subject = $_POST['subject'];
$contact_message = $_POST['message'];
if( $contact_name == true )
{
$sender = $contact_email;
$receiver = "repose@repose.in";
$client_ip = $_SERVER['REMOTE_ADDR'];
$email_body = "Name: $contact_name \nEmail: $sender \nSubject: $contact_subject \nMessage: $contact_message ";
$extra = "From: $sender\r\n" . "Reply-To: $sender \r\n" . "X-Mailer: PHP/" . phpversion();
if( mail( $receiver, "Mail From Short Greens - $subject", $email_body, $extra ) )
{
echo "success=yes";
}
else
{
echo "success=no";
}
}
?>
+++++++++++++++
next
i uplode same php and flash contact from godday hosting
ie., shortgreens,com
contact form : http://shortgreens.com/contact.html
its working
please kindly solve the problem
regards
bee jay
|