Jump to content

Home

HTML E-Mail


ZBomber

Recommended Posts

If the HTML is displayed, depends on what e-mail program is being used by the receiver. But anyway, if you mean in script form?...

 

<?php
$msg = stripslashes("<html>
<body>
<table border=0>
<tr>
<td>Dear Tom,
Don't forget to meet me at 19 o\'clock tomorrow at McDonald\'s.</td>
</tr>
</table>
</body>
</html>");

And the mail functions parameters (in this order) are To, Subject, Message, Headers:

mail(tom@yahoo.com, Yo, $msg, "From: [email]zbomber@thelastchild.net[/email]"); // Or something
?>

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...