phpweb Posted November 10, 2008 Share Posted November 10, 2008 I would like my mail fuction, which is: mail($_SESSION['email'], $subject, $body, $header); I need $body to equal HTML code. Everything I have tried does not work. Thanks Link to comment https://forums.phpfreaks.com/topic/132076-php-mail-fuction-with-html/ Share on other sites More sharing options...
premiso Posted November 10, 2008 Share Posted November 10, 2008 <?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); ?> Take straight from http://us2.php.net/manual/en/function.mail.php Everything you need to know how to send HTML mail from PHP is in there. You have to set the headers right. Link to comment https://forums.phpfreaks.com/topic/132076-php-mail-fuction-with-html/#findComment-686376 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.