Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how can i change the color of the text ????

Status
Not open for further replies.

ivoestg

Programmer
Mar 21, 2001
77
PT
how can i change the color of the text in the body when i send an email in php? thanks...
 
Pass a variable to the script when the email is sent, then in your script choose the font color based on the value of that variable.
Code:
<?PHP
if(!submitting)
{
echo &quot;<font color=\&quot;000000\&quot;>\n&quot;;
echo &quot;<form method=\&quot;post\&quot;>\n&quot;;
  //The rest of yer form goes here
echo &quot;<input type=\&quot;submit\&quot; name=\&quot;submitting\&quot; value=\&quot;1\&quot;>&quot;;
}
else
{
echo &quot;<font color=\&quot;333333\&quot;>&quot;;
echo &quot;Heres what you sent:&quot;;
//put the email stuff here
}
?>
-gerrygerry
geraldschafer@hotmail.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top