ZBomber Posted April 5, 2005 Share Posted April 5, 2005 Does anyone know how to send HTML E-Mails? I wanna be able to make tables and stuff I can send in E-Mail, does anyone know how I go about doing this? Thanks Link to comment Share on other sites More sharing options...
Joetheeskimo Posted April 6, 2005 Share Posted April 6, 2005 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 More sharing options...
ZBomber Posted April 6, 2005 Author Share Posted April 6, 2005 That might work, what I did though was make it in word and copy/paste it into GMail. But thanks, I'll use that next time I need to do it. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.