-
as seen on Stack Overflow
- Search for 'Stack Overflow'
The following is a function from zend_mail_protocol_imap. i read that to search emails, I would want to override it using zend_mail_storage_imap (which is what I'm using now to grab email from gmail). I copy and pasted the following function into zend_mail_storage_imap, but I'm having issues with…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi, i'm working on a simple mail list app in PHP using Zend Mail. The idea is that all mail that bounce is redirected to a script which processes them and a report is generated. The script is running ok in direct tests, but I've testing it with fake mail address to test the mail list app, and it appears…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi guys for some weird reason I'm unable to send email using zend mail :( - I keep getting the following error:
Parse error: syntax error, unexpected T_VARIABLE, expecting T_STRING in /home/fltdata/domains/fltdata.com/public_html/admin/g-app/includes/mailer.php on line 77
Below is my code:
if($_POST):
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm trying to get Zend_Mail to send an encapsulated message - as though it's forwarding an email.
$attachedContent = "<h1>H1 Email</h1>";
$emailContent = "<h1>Email Content>";
$mail = new Zend_Mail();
$mail->setBodyText('text content');
$mail->setBodyHtml($emailContent);
$mail->setFrom('kieran@fromz…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
How can I check if an email folder exists using Zend_Mail_Storage_Imap, theres a createFOlder, renameFOlder and removeFolder and also a getFOlders but not exactly any fixed method to query if a certain mail folder exists? The GetFOlders returns a humonogous tree of folders to start with.
>>> More