Jump to content

Mail (MIME) issues


cactuscake

Recommended Posts

I recently changed something in an old script of mine and it doesn't work properly anymore. I don't know what I did, and I don't have a backup, oops!

 

The code below is supposed to take inputs from a web form and turn them into an e-postcard, attaching and sending it as a jpeg on an email, ideally to be displayed inline.

 

$name	 = $_POST['sendername'];
$to      = $_POST['recipient'];
$from    = $_POST['senderemail'];
$subject = basename( $name)." has sent you a jCard!";
$message = $_POST['text'];
$bcc	 = $_POST['bcc'];
$finalimage = $_POST['finalimage'];

//create a boundary string. It must be unique
//so we use the MD5 algorithm to generate a random hash
$random_hash = md5(date('r', time()));
//define the headers we want passed. Note that they are separated with rn
$headers = "From: ".$name." <".$from.">\r\nReply-To: ".$name." <".$from.">\r\nBcc: ".$bcc."\r\nX-Mailer: PHP/".phpversion();"";
//add boundary string and mime type specification
$headers .= "\r\nContent-Type: multipart/mixed; boundary='PHP-mixed-".$random_hash."'";
//read the attachment file contents into a string,
//encode it with MIME base64,
//and split it into smaller chunks
$attachment = chunk_split(base64_encode(file_get_contents($finalimage)));
//define the body of the message.
ob_start(); //Turn on output buffering
?>

--PHP-mixed-<?php echo $random_hash; ?>

Content-Type: multipart/alternative; boundary='PHP-alt-<?php echo $random_hash; ?>'

--PHP-alt-<?php echo $random_hash; ?>

Content-Type: text/plain; charset='iso-8859-1';
Content-Transfer-Encoding: 7bit

<?php echo $name; ?> sent you a jCard, click the attachment to view it.

Send your own jCards at www.j-cards.co.uk!

--PHP-alt-<?php echo $random_hash; ?>

Content-Type: text/html; charset='iso-8859-1';
Content-Transfer-Encoding: 7bit

<p><?php echo $name; ?> sent you this jCard:</p>
<img src="cid:<?php echo $random_hash; ?>.jCard.jpg" />
<p>Send your own jCards at <a href="http://www.j-cards.co.uk">j-cards.co.uk</a>!</p>

--PHP-alt-<?php echo $random_hash; ?>--

--PHP-mixed-<?php echo $random_hash; ?>

Content-Type: image/jpeg; name='jCard.jpg'
Content-Transfer-Encoding: base64
Content-ID: <<?php echo $random_hash; ?>.jCard.jpg>
Content-Disposition: attachment; filename='/jCard.jpg'

<?php echo $attachment; ?>
--PHP-mixed-<?php echo $random_hash; ?>--

<?php
//copy current buffer contents into $message variable and delete current output buffer
$message = ob_get_clean();
//send the email
$mail_sent = @mail( $to, $subject, $message, $headers );
//if the message is sent successfully return success page html. Otherwise return send fail html.
echo $mail_sent ? "<html> snip...

 

The email gets sent, and the source of the email looks identical to that of previous correctly displayed versions, but for some reason the email reader no longer renders the html, instead it just shows plain text, so it looks like the source just without headers - e.g.:

 

From: whoever@wherever.com

To: friend@bestfriend.com


--PHP-mixed-643f51499c414383c5735473100462e4

Content-Type: multipart/alternative; boundary='PHP-alt-643f51499c414383c5735473100462e4'

 

--PHP-alt-643f51499c414383c5735473100462e4

Content-Type: text/plain; charset='iso-8859-1';

Content-Transfer-Encoding: 7bit

 

Joe sent you a jCard, click the attachment to view it.

 

Send your own jCards at www.j-cards.co.uk!

 

--PHP-alt-643f51499c414383c5735473100462e4

Content-Type: text/html; charset='iso-8859-1';

Content-Transfer-Encoding: 7bit

 

<p>Joe sent you this jCard:</p>

<img src="cid:643f51499c414383c5735473100462e4.jCard.jpg" />

<p>Send your own jCards at <a href="http://www.j-cards.co.uk">j-cards.co.uk</a>!</p>

 

--PHP-alt-643f51499c414383c5735473100462e4--

 

--PHP-mixed-643f51499c414383c5735473100462e4

Content-Type: image/jpeg; name='jCard.jpg'

Content-Transfer-Encoding: base64

Content-ID: <643f51499c414383c5735473100462e4.jCard.jpg>

Content-Disposition: attachment; filename='/jCard.jpg'

 

/9j/4AAQSkZJRgABAQA... (base64 characters - very long - snipped)

 

--PHP-mixed-643f51499c414383c5735473100462e4--

 

So everything is being sent, it's just an issue of getting it read correctly by the email program (worked before in gmail and hotmail). So I think it's an issue with the headers or boundary string I'm using, but they look alright to me, I just can't see what I've done wrong.  :shrug:

 

Any ideas?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.