I’m trying to flag a message as seen: The output is bool(true) but when I then re-fetch my messages (imap_fetch_overview) this is what I see: Clearly I’m doing something wrong, but I can’t spot what. Answer As written in the comments of imap_setflag_full, pop3 apparently does not support flags other than the deleted one. After switching to IMAP flags work
Tag: imap
how to identify php imap client to gmail?
I want to identify my php imap client to gmail so user can check which imap is currently using the gmail. The details who is using the gmail inbox right now can be check by click on details gmail activity details when check email by thunderbird using imap connection. thunderbird identify itself like this thunderbird imap details but when I
email – how to identify email responses from users?
I’m sending email to users with Laravel. It’s working fine. So I’m now reading my inbox with PHP-IMAP to catch users email responses. How can I identify an incoming email to the previous sent message? …
Laravel imap get messages sorted by most recent
I am using laravel-imap to retrieve messages from a mailbox: $aMessage = $selectedFolder->query()->setFetchFlags(true)->setFetchBody(true)->setFetchAttachment(false)->leaveUnread() -&…
Get Gmail All folder IMAP PHP
I want to access the All folder in gmail via imap. in different language and in different name. What should i do? The code of connection is: Answer This is the solution i found for the problem.The idea is that the All folder contains the biggest number of mails so we have to get the number of mails in all
Remove char from imap mail extract
I am trying to fetch a mail in imap from Google, I’m using the imap() function from PHP IMAP library and I want to use a preg_match() call on my mail content but I have a strange issue, I have curious break lines altering the normal preg_match(). More details: I have in my markup something like that: I am running
Connecting to Gmail through IMAP with PHP – SSL context failed
I’m trying to connect to Gmail through IMAP with PHP running in Apache. This is on an Ubuntu 9.04 system. I’ve got some sort of PHP configuration issue that is keeping this from working. First, …