PHP Classes

how to manage a message/rfc822

Recommend this page to a friend!

      PHP MIME Email Message Parser  >  All threads  >  how to manage a message/rfc822  >  (Un) Subscribe thread alerts  
Subject:how to manage a message/rfc822
Summary:how to manage a message/rfc822
Messages:3
Author:Christophe Charron
Date:2007-11-10 15:10:49
Update:2007-11-18 22:33:12
 

  1. how to manage a message/rfc822   Reply   Report abuse  
Picture of Christophe Charron Christophe Charron - 2007-11-10 15:10:49
Hi everybody.

I'd like to know how you manage an email containing a part like message/rfc822.

Typically, thunderbird forwarded message ! Is there some function in the class that extracts the body of that kind of message or the all message ?

A exemple is here :
test03.christophe-charron.org/publi ...

  2. Re: how to manage a message/rfc822   Reply   Report abuse  
Picture of Alan Fullmer Alan Fullmer - 2007-11-18 22:30:45 - In reply to message 1 from Christophe Charron
You would want to create a function that recalls itself to recursively decode the message.

For example, if you loop through attachments, if it's an rfc message, decode it again, exactly like you did with your original message. The class will return the same structure.

  3. Re: how to manage a message/rfc822   Reply   Report abuse  
Picture of Alan Fullmer Alan Fullmer - 2007-11-18 22:33:12 - In reply to message 1 from Christophe Charron
You would want to create a function that recalls itself to recursively decode the message.
For example, if you loop through attachments, if it's an rfc message, decode it again, exactly like you did with your original message. The class will return the same structure.