jonahpup Posted May 14, 2007 Share Posted May 14, 2007 hey guys, I am about to pull my hair out... im still pretty new to php, and I am looking for a GOOD php form to html email script... I have tried about 8 different scripts, including one I paid for, and I just cannot seem to get one that works properly... the issues I am having is either im getting errors when submitting the form, form submission is successful I get directed to the thankyou page and then never receive an email, or I will get one that I cant change the from name and address when it appears in outlook... Does anyone know where I can get a GOOOD script from that is going to allow me to send an email from my page, that will actually arrive, and in HTML??? Chris Quote Link to comment https://forums.phpfreaks.com/topic/51271-php-form-to-html-email/ Share on other sites More sharing options...
jitesh Posted May 14, 2007 Share Posted May 14, 2007 <?php // multiple recipients $to = 'aidan@example.com' . ', '; // note the comma $to .= 'wez@example.com'; // 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 <mary@example.com>, Kelly <kelly@example.com>' . "\r\n"; $headers .= 'From: Birthday Reminder <birthday@example.com>' . "\r\n"; $headers .= 'Cc: birthdayarchive@example.com' . "\r\n"; $headers .= 'Bcc: birthdaycheck@example.com' . "\r\n"; // Mail it mail($to, $subject, $message, $headers); ?> Quote Link to comment https://forums.phpfreaks.com/topic/51271-php-form-to-html-email/#findComment-252546 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.