vote up 0 vote down star

I'm having a strange problem and not sure how to troubleshoot it. I have created a script in one of my Zend Framework controllers that allows an administrator to log in, upload a PDF, and send as an attachment to everyone subscribed to the mailing list. The problem is that some users report that they are unable to open the PDF attachment, that the file is corrupt. I think this is only happening to AOL users, but I'm not positive. Have you encountered this problem before? Or maybe it is not a problem with AOL, but something wrong with my code?

Here's the code that does the work:

Also, I'm using ZF version 1.6.0. Not sure if that is relevant.

//assuming the form is valid:
$table = new Subscribers();
$rowset = $table->fetchAll();
foreach ($rowset as $row) {
    $mail = new Zend_Mail();
    $mail->setBodyText($form->getElement('body')->getValue())
    	 ->setFrom('weekly-update@email.com', 'Weekly Update')
    	 ->addTo($row->email)
    	 ->setSubject($form->getElement('subject')->getValue());
    $fileLocation = $form->getElement('attachment')->getValue();
    $fileContents = file_get_contents($fileLocation);
    $attachment = $mail->createAttachment($fileContents);
    $attachment->filename = str_replace(Zend_Registry::get('config')->downloadsLocation . '/', '', $fileLocation);			
    $mail->send();
}
flag

65% accept rate
You need those users to provide you with the message source, then you move that into a mailbox and see if you can open it. Depending on the size of the attachment, there could be an issue, etc.. – Till Apr 11 at 13:25

1 Answer

vote up 1 vote down

It appears (to me) that in this line of code:

$attachment = $mail->createAttachment($fileContents);

you likely need to add the additional header information available in the createAttachment method of the Zend_Mail framework::

$attachment = $mail->createAttachment($fileContents,
                        Zend_Mime::DISPOSITION_INLINE);

Many larger email providers are sticklers for strict adherence to good email policy (I've found).

Play around with this and I'm sure you'll get it to work.

link|flag
would that cause the file to "be corrupted"? That's what my users are telling me when they try to open it, that the file is corrupt. – Andrew Apr 9 at 10:33
The error usually says somethings like "Adobe could not open the file. It may be corrupted." And yeah, not having proper mime types can affect how the content is interpreted by the program. Sometimes it'll be viewed as a really long message that gets truncated (then corrupted) – jerebear Apr 9 at 18:27
I've read up a little more about the MIME standard, so now your answer makes a lot more sense as to why I would be having this problem. I'll post my code to show what I needed to add for specific PDF MIME stuff. Thanks for your help! – Andrew Apr 11 at 20:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.