Forums

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

Home Forums Back End How to get quiz results emailed to me and the user? Re: How to get quiz results emailed to me and the user?

#107748
chicago123
Member

Thanks for the suggestion. I got it to send an email to me by using the code below. Now, I need the same message emailed to the user. I have already created an email address field on the quiz page.

Thanks!



$mailTo = "[email protected]";
$msgSubject = "Your Trivia Results";
$msgBody = "Hi!nn";
$msgBody .= "On Trivia #1 you got ";
$msgBody .= $totalCorrect . " out of 5 correct!n ";
$msgBody .= "You earned ";
$msgBody .= $totalCorrect . "0 SpongeCash!nn";
$msgBody .= "Here are your Trivia Results:n";
$msgBody .= $answer1 . "n";
$msgBody .= $answer2 . "n";
$msgBody .= $answer3 . "n";
$msgBody .= $answer4 . "n";
$msgBody .= $answer5 . "nn";
$msgBody .= "Remember, you can earn SpongeCash for each Trivia once a week up to five times!nn";
$msgBody .= "Thanks for Playing!nn";
$msgBody .= "The Spongebob Fanclub";
$xHeaders = "From:";

mail ($mailTo, $msgSubject, $msgBody, $xHeaders);

?>