ezcomponents

Outputting message body from eZ Components ezcMailMultipartReport object

I'm attempting to output the message body of messages retrieved from my imap server, using the ezcMailImapTransport class from eZ Components. I'm able to connect and retrieve all the messages, but I can't figure out how to output the message body. The output of print_r($mail[0]->body); is below. I just don't know how to deal with an ob...

Retrieve messageId of email being sent using ezcomponents ezcMailComposer

I'm trying to retrieve the messageId for the email being sent. I've tried explicitly setting the messageId just before sending, like this: $mail->setHeader('messageId',ezcMailTools::generateMessageId('example.com')); I then return the messageId after sending, like this: return $mail->getHeader('messageId'); ... but the counter po...

General workflow-question / ez components workflow

Hello, I looked for a workflow engine written in php and found the ez components workflow-classes (http://ezcomponents.org/docs/api/latest/introduction_Workflow.html). After work with the examples I have two general problems with the understanding of the (general) workflow-functionality: 1.) If I have defined a general workflow (for e...

How do I set the permissions of the files I extract with ezcArchive - ezComponents

Hi, I am using the ezcomponents archive component to extract uploaded files that is being uploaded to my website. The extracting part is very easy but how do I specifically assign the right permissions to those files being extracted? http://ezcomponents.org/docs/tutorials/Archive#usage $extract_dir = 'some existing directory'; $archi...

How many database instances are too much with the ezcomponents database component?

Hi, I want to connect to about 9 databases and create an instance for everyone of them to aggregate my results in the queries. I am writing a metrics dashboard for my company that need to track results and performance over about 9 different databases with about 15mil+ records in each. Now the technical part is not hard. I know how to c...