tech-php Posted April 2, 2007 Share Posted April 2, 2007 I want to display my contents in tabular form inside an email. my code is ... $tab1 = "<table><tr></tr></table>"; mail ("[email protected]"," ", $tab1, " "); But i m getting all the tags as they are in tab1 instead of a table ! Link to comment https://forums.phpfreaks.com/topic/45237-executing-html-inside-an-email/ Share on other sites More sharing options...
MadTechie Posted April 2, 2007 Share Posted April 2, 2007 your need to setup the mime type of html i suggect using something like phpmailer class Link to comment https://forums.phpfreaks.com/topic/45237-executing-html-inside-an-email/#findComment-219626 Share on other sites More sharing options...
jitesh Posted April 2, 2007 Share Posted April 2, 2007 This is example : <?php // multiple recipients $to = '[email protected]' . ', '; // note the comma $to .= '[email protected]'; // subject $subject = 'Birthday Reminders for August'; // message $message = ' <html> <head> <title>Birthday Reminders for August</title> </head> <body> <p>Here are the birthdays upcoming in August!</p> <table> <tr> <th>Person</th><th>Day</th><th>Month</th><th>Year</th> </tr> <tr> <td>Joe</td><td>3rd</td><td>August</td><td>1970</td> </tr> <tr> <td>Sally</td><td>17th</td><td>August</td><td>1973</td> </tr> </table> </body> </html> '; // To send HTML mail, the Content-type header must be set $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; // Additional headers $headers .= 'To: Mary <[email protected]>, Kelly <[email protected]>' . "\r\n"; $headers .= 'From: Birthday Reminder <[email protected]>' . "\r\n"; $headers .= 'Cc: [email protected]' . "\r\n"; $headers .= 'Bcc: [email protected]' . "\r\n"; // Mail it mail($to, $subject, $message, $headers); ?> Link to comment https://forums.phpfreaks.com/topic/45237-executing-html-inside-an-email/#findComment-219767 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.