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 = "[email protected]";

$EmailTo = "[email protected]";

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.