project3 Posted March 8, 2008 Share Posted March 8, 2008 for some reason I can't get html mail to work on linux server with php 5. My normal html code wasn't working so I even went to php manual and got code and still wont send html email. heres the code i got from the manual that isn't working. the only thing I changed in the code was to contain me email address. it sends to me but comes in plain text where i see the html code. <?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/95035-php-html-mail/ Share on other sites More sharing options...
project3 Posted March 8, 2008 Author Share Posted March 8, 2008 I solved this by using \n instead of \r\n Link to comment https://forums.phpfreaks.com/topic/95035-php-html-mail/#findComment-486807 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.