Email;
$FromEmail = "From: $EmailId";
$MailSubject = "Bigeat.com site Feedback";
$Mailmessage = "
Name: $Name
Email ID: $EmailId
Telephone No: $Telephone
Which of the following have you used our website for today
----------------------------------------------------------
$Used[0]
$Used[1]
$Used[2]
$Used[3]
$Used[4]
$Used[5]
Did you find the answer to your query or what you were looking for?
-------------------------------------------------------------------
$Query
How easy was the information to find?
-------------------------------------
$InformationToFind
How easy was the information to understand?
-------------------------------------------
$EasyToUnderstand
Overall, how helpful did you find our website
---------------------------------------------
$HelpFul
Taking everything into account, what do you think about our website?
--------------------------------------------------------------------
$WebsiteFeedback
Do you have any comments you'd like to make about the website?
--------------------------------------------------------------
$WebsiteComment";
if(verify_email($EmailId))
{
$SendMail = mail($AdminEmail,$MailSubject,$Mailmessage,$FromEmail);
}else
{
$Error = 'Please enter a valid email address';
}
if($SendMail)
{
$Error = 'Your feedback has been sent successfully to Bigeat admin';
}
}
?>