PHP Classes

decoding auto generated email

Recommend this page to a friend!

      MIME E-mail message sending  >  MIME E-mail message sending package blog  >  How Can PHP Send Emai...  >  All threads  >  decoding auto generated email  >  (Un) Subscribe thread alerts  
Subject:decoding auto generated email
Summary:decaoding MIME messages
Messages:2
Author:Jo Anne
Date:2008-07-07 06:49:26
Update:2008-07-08 06:04:11
 

  1. decoding auto generated email   Reply   Report abuse  
Picture of Jo Anne Jo Anne - 2008-07-07 06:49:26
How can I save in the database the contents of an auto generated email meassage from a software?

  2. Re: decoding auto generated email   Reply   Report abuse  
Picture of Manuel Lemos Manuel Lemos - 2008-07-08 06:04:12 - In reply to message 1 from Jo Anne
It depends on what you want to do with the message contents after you store it in the database.

If you need the whole message structure, maybe you can use the serialize() function to store the array returned by the Analyze or Decode class functions to store it in a BLOB table field. If you need just the subject, date, sender, etc., you can store those details on individual table fields.