| VanBuskirk, Patricia 2007-10-18, 6:59 pm |
| I have the following code that so for works perfect for all email
programs EXCEPT Eudora. With Eudora, the entire code after the first
?>, starting at "--PHP-alt" just pops into the body of the email.
Anyone know of a fix for Eudora that will still allow the rest of the
world to see it correctly?
<?php
//define the receiver of the email
$to =3D 'youraddress@example.com';
//define the subject of the email
$subject =3D 'Test HTML email';=20
//create a boundary string. It must be unique=20
//so we use the MD5 algorithm to generate a random hash
$random_hash =3D md5(date('r', time()));=20
//define the headers we want passed. Note that they are separated with
\r\n
$headers =3D "From: webmaster@example.com\r\nReply-To:
webmaster@example.com";
//add boundary string and mime type specification
$headers .=3D "\r\nContent-Type: multipart/alternative;
boundary=3D\"PHP-alt-".$random_hash."\"";=20
//define the body of the message.
ob_start(); //Turn on output buffering
?>
--PHP-alt-<?php echo $random_hash; ?> =20
Content-Type: text/plain; charset=3D"iso-8859-1"=20
Content-Transfer-Encoding: 7bit
Hello World!!!=20
This is simple text email message.=20
--PHP-alt-<?php echo $random_hash; ?> =20
Content-Type: text/html; charset=3D"iso-8859-1"=20
Content-Transfer-Encoding: 7bit
<h2>Hello World!</h2>
<p>This is something with <b>HTML</b> formatting.</p>=20
--PHP-alt-<?php echo $random_hash; ?>--
<?
//copy current buffer contents into $message variable and delete current
output buffer
$message =3D ob_get_clean();
//send the email
$mail_sent =3D @mail( $to, $subject, $message, $headers );
//if the message is sent successfully print "Mail sent". Otherwise print
"Mail failed"=20
echo $mail_sent ? "Mail sent" : "Mail failed";
?>
|