View Full Version : [PHP] Send Html Email
Wojtek
April 18th, 2004, 16:57
How can I quickly send an html message?
Wanted Effect:
$to=email@email.com;
$from=email@allpoem.com;
$body="
<center><img src='http://www.allpoem.com/images/logo.gif'></center>
Your recent poem submission was accepted and can be accessed via the following URL.
$linktopoem
You can share the link above with family and friends.
AllPoem Database Manager
www.AllPoem.com";
mail($to, $from, $body);
spec
April 18th, 2004, 18:19
http://ca.php.net/manual/en/function.mail.php
Scroll down to complex mail
Wojtek
April 18th, 2004, 19:04
Thank you spec
<?php
/* recipients */
$to = "mary@example.com" . ", " ; // note the comma
$to .= "kelly@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, you can set the Content-type header. */
$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";
/* and now mail it */
mail($to, $subject, $message, $headers);
?>
Powered by vBulletin® Version 4.1.7 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.