FranMansfield Posted August 16, 2007 Share Posted August 16, 2007 Hi there, I'm trying to make it so that the questions on the email that gets emailed back to me from my PHP form, or the answers, are in a different color. I've tried adding , or <font color="red"> </font> in various places, but it's just not working. Always gives me a parsing error. Please help.... My current code on the PHP send page: <?php // get posted data into local variables $EmailFrom = "xx@xx.com"; $EmailTo = "xx@xx.com"; $Subject = "Someone is emailing you info!"; $Name = Trim(stripslashes($_POST['Name'])); $Email = Trim(stripslashes($_POST['Email'])); // validation $validationOK=true; if (!$validationOK) { print "<meta http-equiv=\"refresh\" content=\"0;URL=error.htm\">"; exit; } // prepare email body text $Body = ""; $Body .= "What is your name? "; $Body .= $Name; $Body .= "\n"; $Body .= "What is your email address? "; $Body .= $Email; $Body .= "\n"; // send email $success = mail($EmailTo, $Subject, $Body, "From: <$EmailFrom>"); // redirect to success page if ($success){ print "<meta http-equiv=\"refresh\" content=\"0;URL=thankyou.html\">"; } else{ print "<meta http-equiv=\"refresh\" content=\"0;URL=error.html\">"; } ?> THANK YOU!!!! Any help is greatly appreciated!! Quote Link to comment https://forums.phpfreaks.com/topic/65271-help-please-adding-color-to-what-is-being-emailed-back-to-me-on-a-php-form/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.