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 gkittelson 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 text???

Status
Not open for further replies.

ivoestg

Programmer
Mar 21, 2001
77
PT
how can i change the color of body text when i send an email in php? thanks...
 
Sending HTML email works just like sending an actual web page. Outlook is very forgiving if you forget BODY and HTML tags but other email clients such as Eudora (sp?) are not, they will literally display all the code if the HTML and BODY tags are left out.

<html>
<head>
<title>Color Change</title>
</head>
<body link=&quot;#0000FF&quot; vlink=&quot;#0000FF&quot; alink=&quot;#0000FF&quot; text=&quot;#FF0000&quot; bgcolor=&quot;#FFFFFF&quot;>
<p>Body of email goes here.</p>
</body>
</html> Mike Barone
FREE CGI/Perl Scripts & JavaScript Generators
Ace PopUp Generator Software - Totally FREE
 
Dont forget the
Code:
<font>
tag!

Code:
<font color=&quot;#6699FF&quot;>
-gerrygerry
geraldschafer@hotmail.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top