Tagged Questions
-1
votes
0answers
39 views
Retrieve Emails from Specific Email with Zend Mail Framework
I am trying to use the Zend Mail Framework to retrieve emails received from customers. An example would be this:
I access the customers account on file with my company
I click a link that says "View ...
0
votes
0answers
31 views
Using Zend IMAP functions segfaults on Solaris 10 with SMCphp
I am using the IMAP mail functions from the Zend library on a Solaris 10 (sparc) box using sunfreeware's PHP5 package (SMCphp) and getting segmentation faults! The following is a simple piece of code ...
0
votes
0answers
25 views
Zend Mail no receiver in headers
My Zend Mail fetches IMAP e-mails. Though sometimes I'm getting an error when I try the following command:
// $mail = Zend_Mail_Storage_Imap instance
$message = $mail->getMessage($i);
This is ...
0
votes
0answers
71 views
Zend Mail only get headers
I'm using Zend Mail to fetch messages from several IMAP servers. I'm looping through all messages with the current PHP code:
for($i = 1; $i <= ($mail->countMessages()); $i++){
$message = ...
0
votes
2answers
116 views
Zend Framework Mail: Base64 header encoding on incoming mails
I try to download emails from my POP3/IMAP accounts using Zend Framework 1.12 and it's working fine. QP header fields will be decoded automatically. However, when a header field (from name or subject) ...
0
votes
0answers
119 views
Zend Mail Imap - copy email to sent folder
I'm sending emails, but they don't appear in my sent folder. I understand why.
I have all IMAP information, how do I push a copy of the email into the sent folder?
0
votes
0answers
84 views
Zend_Mail imap getContent not working on SmarterMail server
Zend is actually giving PHP warnings in their code when I'm trying to get the content of an email from a SmarterMail server
Message: Undefined offset: 0
Filename: Protocol/Imap.php
Line Number: 565
...
0
votes
0answers
48 views
String comparison or preg_match doesn't work on mail subject fetched using Zend Imap
I am trying to compare the subject of a mail, that I get using Zend_Mail_Storage_Imap Library, using preg_match. However, this always returns 0. Though, when I echo the mail subject, it gives the ...
0
votes
0answers
101 views
Zend_Mail_Storage_Imap fails but imap_open works
I have written some code to fetch emails from a Gmail mailbox using Zend_Storage_Mail_Imap library. Till now, it was running fine on the development server (where imap_open was disabled). After I ...
1
vote
1answer
160 views
Retrieve mails up to a specific date from IMAP using Zend
I am using Zend_Mail_Storage_Imap library to retrieve e-mails from IMAP.
$mail = new Zend_Mail_Storage_Imap(array('connection details'));
foreach($mail as $message)
{
if($message->date > ...
0
votes
0answers
100 views
Searching inbox by subject line using Zend_Mail_Storage_Imap
Is there any method in Zend Framework for searching the email inbox for any particular subject line? I have done it by accessing all messages and use preg_match() on the subject lines one by one. But ...
0
votes
1answer
212 views
get a new message zend gmail [closed]
how to get a new message with gmail using Zend_Mail_Storage IMAP or POP3?
I can set up the imap class as follows
Zend_Loader::loadClass('Zend_Mail_Storage_Imap');
$config = ...
0
votes
1answer
304 views
Zend_Mail - Fetch IMAP Attachements from GMAIL
I habe some trouble with Zend Framework and fetching Attachements from GMAIL. Authentication is handeld by oAuth.
It is no problem to fetch the Mailtext, but i cant fetch the attachement, or better i ...
2
votes
1answer
651 views
How to fetch a GMail message using GMail URL Hash in Zend Framework
I am using Zend Framework for fetching GMail messages.
I have been able to authenticate and fetch all the messages using the zend framework using following code:
$storage = new ...
0
votes
1answer
785 views
Zend_Mail_Part: Get number of attachments
How can i find out that how many attachments a message has?
Is this method reliable?
$attachments = 0;
$msg = $mail->getMessage($msgno);
if($msg->isMultipart()){
$parts = ...
1
vote
2answers
370 views
How can I get sender email address while using zend imap
I have uploaded the whole screenshot of the mail which is sent to my gmail id. But fetch at my website using zend imap.
here I am not able to figure out the exact sender email address header.
as you ...
2
votes
1answer
834 views
Zend IMAP search and filters
How do i make search using filters like in gmail. Like getting list of email with specific labels or list of mails from a specific email address. I couldn't able to find it in documentations.
Note:I ...
5
votes
3answers
1k views
IMAP “Invalid Credentials” via GMail XOAUTH
I'm trying to get into the IMAP server with OAuth, using the PHP Sample Code provided by Google which uses the Zend Imap class but I am failing to authenticate. Zend is giving me the error:
...
5
votes
2answers
2k views
Zend Framework: How to read email attachments (and save to disk)?
I am currently using Zend_Mail_Storage_Imap to read email messages using IMAP. I am able to read the email body (text and html) thanks to the documentation.
Now I'm trying to figure out how to save ...
0
votes
1answer
1k views
How do I extract the content from zend mail imap?
I'm trying to write a script which downloads all mail in a certain folder without a custom flag, let's call the flag $aNiceFlag for now; after I've fetched a mail I want to flag it with $aNiceFlag. ...
0
votes
1answer
281 views
mark message as unseen using Zend
i'm using Zend_Mail_Storage_Imap to ream emails.
In some special case, after iv'e read the message, i want to mark it as unread again.
how can i do that in zend framework?
Thanks,
Boris.
0
votes
2answers
825 views
How to use Gmail XLIST command with Zend Framework IMAP?
I am using the IMAP-module from Zend Framework to interact with Gmail.
But I need to implement to XLIST command (http://code.google.com/intl/nl-NL/apis/gmail/imap/#xlist) to get folder names. But I ...
1
vote
1answer
327 views
imap headers of a quoted mail
I'm sending an email with some xheader.
When the recipient of the email replays to that email, i want to parse it, and get the content of that xheader from the mail i get by replay.
unfortunately, ...
1
vote
1answer
271 views
IMAP IDLE is using ZEND PHP Framework
I found similar question here
Imap IDLE in Zend Framework
but link given there is broken and that answer don't describe about IMAP IDLE in zend.
and ticket here
...
0
votes
1answer
696 views
Webmail client with google imap
Im developing a webmail client using Zend framework and gmail IMAP.
Features like moving email from one folder to another ,Flagging,
mail composing,Drafts etc.
Simply it should reflect the same way ...
0
votes
1answer
620 views
gmail oauth imap zend retrieve from gmail instead of session
Im planning to use google oauth IMAP to sign up for my website.
Im using zend framework for the same.
http://code.google.com/p/google-mail-xoauth-tools/wiki/PhpSampleCode
Also im suing 3 legged ...
0
votes
1answer
1k views
Zend Imap Connection timeout
I'm using Zend framework provided IMAP classes to access gmail messages over imap. I access the message headers of all the messages in the inbox one by one and index them locally. The script works ...
1
vote
1answer
470 views
Imap IDLE in Zend Framework
I am searching for the IMAP IDLE function in the Zend Framework. I would either like to know whether it is integrated or if it could be done. I have read that the IlohaMail library seems to have ...
0
votes
1answer
88 views
script dying out and contents are being prompted for download due to fsockopen - how do I fix it
I'm working with zend framework and recently had terrible issue swith my code. Actually I'm developing a webfront for emails and users enter their mail server details and are able to check on their ...
0
votes
1answer
181 views
Is there a faster way to retrieve a message using zend framework libraries?
Hi guys I'm building a simple mail interface for my application but I've noticed that its really slow especially when the user has to list out a number of emails. I've traced the time taken for code ...
0
votes
2answers
418 views
Zend Framework - Not Connecting to IMAP mail server - instead dumps empty php file
Hi guys I'm trying to connect to an imap mail server using zend frameworks Zend_Mail_Storage_Imap function. Its working with some accounts but with most accounts it just dies out. I'm connecting ...
1
vote
1answer
1k views
Can't get message body of certain emails from inbox using the Zend framework?
Hi guys I'm trying to read through an email inbox for my application - I'm using the zend framework here. The problem is that I'm unable to retrieve the message body for certain emails. The following ...
2
votes
3answers
4k views
Attaching labels to messages in Gmail via IMAP using code
concerning Gmail labels - what are they technically speaking. I mean through imap connection I can access a gmail mailbox and go through the emails however let say I wish to create a label and attach ...
0
votes
1answer
1k views
zend framework : set imap mail to read, or move it to a folder
After reading a message's state in Zend_Mail_Storage_Imap with $message->getHeaders(). How do I then set that mail as read?
setHeaders(Zend_Mail_Storage::FLAG_SEEN);
Thanks,
Dan