reading and decoding email attachments

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • olafmol

    #1

    reading and decoding email attachments

    Hello,

    i want to write a PHP4 script that reads POP3 or IMAP mail and can
    decode the possible attachments in the email. I've looked around for
    some classes to do this, and found a few, but most of them seem to be
    very lowlevel or lacking in functionality. Is there a good script,
    class or example for decoding email attachments?
    I have used a class called attachmentread, but this class expects an
    attachment as disposition: attachment, while my email with attachments
    are all inline... any ideas?

    Olaf

  • Toby A Inkster

    #2
    Re: reading and decoding email attachments

    olafmol wrote:
    i want to write a PHP4 script that reads POP3 or IMAP mail and can
    decode the possible attachments in the email.


    --
    Toby A Inkster BSc (Hons) ARCS
    Contact Me ~ http://tobyinkster.co.uk/contact
    Geek of ~ HTML/SQL/Perl/PHP/Python*/Apache/Linux

    * = I'm getting there!

    Comment

    • Aerik

      #3
      Re: reading and decoding email attachments

      On Apr 10, 12:59 pm, Toby A Inkster <usenet200...@t obyinkster.co.u k>
      wrote:
      olafmol wrote:
      i want to write a PHP4 script that reads POP3 or IMAP mail and can
      decode the possible attachments in the email.
      >

      >
      Yeah, but in my (limited!) experience, the IMAP library installed.
      I've just finished writing a function to parse a raw message returned
      from a basic POP3 class to an array so I can mangle it because I want
      an application people without IMAP can use.

      OTOH, Olaf, it doesn't seem like it'd be that hard to change the class
      to accept inline attachements. But maybe not; I'm pretty new to
      mangling email.

      Aerik

      Comment

      • Manuel Lemos

        #4
        Re: reading and decoding email attachments

        Hello,

        on 04/11/2007 03:42 PM Aerik said the following:
        >>i want to write a PHP4 script that reads POP3 or IMAP mail and can
        >>decode the possible attachments in the email.
        >http://www.php.net/imap
        >>
        >
        Yeah, but in my (limited!) experience, the IMAP library installed.
        I've just finished writing a function to parse a raw message returned
        from a basic POP3 class to an array so I can mangle it because I want
        an application people without IMAP can use.
        >
        OTOH, Olaf, it doesn't seem like it'd be that hard to change the class
        to accept inline attachements. But maybe not; I'm pretty new to
        mangling email.
        Did you try this MIME parser class? It supports any type of message
        structure including attachments:

        http://www.phpclasses.org/mimeparser


        --

        Regards,
        Manuel Lemos

        Metastorage - Data object relational mapping layer generator


        PHP Classes - Free ready to use OOP components written in PHP
        http://www.phpclasses.org/

        Comment

        Working...