Jump to content

Help please: Adding Color to what is being emailed back to me on a PHP form....


FranMansfield

Recommended Posts

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!!

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.