
Kerem Uçar - 2012-12-02 17:47:07
Hi there,
Firstly thanks a lot for your class(es), they are really great. Also thanks more for your incredible support, I couldn't find even 1 question which wasn't unanswered, you are great!
I'm trying to integrate your pop3 class with mimeparser class. Your mimeparser class parses "EML" formatted files great. It is also capable of parsing strings when "Data" parameter is populated.
I don't want to use "file structure" for keeping messages though. So my goal is to use mysql and keep messages there as EML strings. After they are inserted into database like this, I'll query them in my script, pust them to mimeparser via data parameter.
However I'm not sure how to create this format with pop3 class? How can I pull a single message from POP3 server with pop3 class and instead of saving it into a EML file, convert it into a string to save into database?
$pop3->RetrieveMessage(1,$headers,$body,2)
command retrieves the email fine and we have these 2 arrays for header and body. But is it possible to turn this returned email into a EML string?
I don't want to use format:
$message_file='pop3://'.$connection_name.'/'.$message;
$mime=new mime_parser_class;
because this format accesses the message online. I want to pull it from server with $pop3->RetrieveMessage first, then convert it to the exact format $message_file='pop3://'.$connection_name.'/'.$message; command has.
Thanks in advance for your support!