¡@

Home 

php Programming Glossary: imap

Connecting to Gmail through IMAP with PHP - SSL context failed

http://stackoverflow.com/questions/1274911/connecting-to-gmail-through-imap-with-php-ssl-context-failed

to Gmail through IMAP with PHP SSL context failed I'm trying to connect to Gmail.. 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... this from working. First here's what I did to setup IMAP for PHP sudo apt get install libc client2007b libc client2007b..

How to implement Gmail OAuth API to send email (especially via SMTP)?

http://stackoverflow.com/questions/2602680/how-to-implement-gmail-oauth-api-to-send-email-especially-via-smtp

the user's Gmail account preferably using SMTP rather than IMAP but I'm easy . However the sample PHP code gives me a couple.. a couple of problems. All of the sample code is based on IMAP not SMTP. Why support the SMTP protocol if you're not going.. using an explicit path. 3 Besides removing the obvious IMAP functions and replacing them with the equivalent SMTP functions..

Fetching mail from a POP3 server using php

http://stackoverflow.com/questions/3165014/fetching-mail-from-a-pop3-server-using-php

but I can't find any PHP script for that all are only for IMAP. Do you know how to fetch mail from a POP3 server Thanks. php.. used for working with POP3 mailboxes. Most of the advanced IMAP features won't work of course e.g. folders or fetching message..

How do you add an email filter to an IMAP email account?

http://stackoverflow.com/questions/4445878/how-do-you-add-an-email-filter-to-an-imap-email-account

do you add an email filter to an IMAP email account I'm using PHP zend_mail_storage_imap specifically.. received. I'd like to change this by placing a filter in IMAP itself a filter similar to GMAIL filters. Would this be possible.. filters. Would this be possible to set this up directly in IMAP If not what would be the next best solution My main problem..

How do I enable XAMPP to locally use the php's mail() function so I can test my mail() scripts locally without having to upload to my server?

http://stackoverflow.com/questions/4486155/how-do-i-enable-xampp-to-locally-use-the-phps-mail-function-so-i-can-test-my

set as following Username root Incoming 127.0.0.1 POP IMAP Outgoing 127.0.0.1 SMTP v. click Create Account c. send test..

A PHP API for retrieving Mail From Yahoo, GMail, Hotmail

http://stackoverflow.com/questions/463410/a-php-api-for-retrieving-mail-from-yahoo-gmail-hotmail

this question I think all of this services provide POP IMAP protocol which you can acces with PHP's functions http php.net..

How do I receive email and process it in a web application

http://stackoverflow.com/questions/965178/how-do-i-receive-email-and-process-it-in-a-web-application

The script would connect to the mail server and open the IMAP unprocessed folder and parse each email. After inserting the.. into the database the script moves the files to another IMAP folder Proccessed . I also found IMAP to be better than POP.. the files to another IMAP folder Proccessed . I also found IMAP to be better than POP for this sort of processing. share improve..

Connecting to Gmail through IMAP with PHP - SSL context failed

http://stackoverflow.com/questions/1274911/connecting-to-gmail-through-imap-with-php-ssl-context-failed

client2007b libc client2007b dev sudo apt get install php5 imap sudo etc init.d apache2 start When I run phpinfo I get the following.. apache2 start When I run phpinfo I get the following imap values IMAP c Client Version 2004 SSL Support enabled Kerberos.. Support enabled Here's my sample code php connect_to ' imap.gmail.com 993 imap ssl novalidate cert INBOX' user 'my gmail..

PHP imap problems

http://stackoverflow.com/questions/14158961/php-imap-problems

imap problems I need to be able to use my gmail from a php script... or plain text in a pre if no html is available. overview imap_fetch_overview inbox email_number 0 body_pre imap_fetchbody.. overview imap_fetch_overview inbox email_number 0 body_pre imap_fetchbody inbox email_number 2.1 message imap_fetchbody inbox..

Fetching mail from a POP3 server using php

http://stackoverflow.com/questions/3165014/fetching-mail-from-a-pop3-server-using-php

share improve this question Somewhat surprisingly PHP's imap library can be also used for working with POP3 mailboxes. Most.. difference is the option string that you're passing to imap_open to quote that page To connect to a POP3 server on port.. to a POP3 server on port 110 on the local server use mbox imap_open localhost 110 pop3 INBOX user_id password Other than that..

How do you add an email filter to an IMAP email account?

http://stackoverflow.com/questions/4445878/how-do-you-add-an-email-filter-to-an-imap-email-account

to an IMAP email account I'm using PHP zend_mail_storage_imap specifically . I built the first iteration of an email product.. flag and filter a number of emails using zend_mail and an imap email account. The problem is that I'm currently searching the.. before they get filtered out every five minutes. php imap zend mail gmail imap share improve this question There is..

how to use imap in php to fetch mail body content

http://stackoverflow.com/questions/5177772/how-to-use-imap-in-php-to-fetch-mail-body-content

to use imap in php to fetch mail body content I Cant Fetch Email body Content.. 'username' password 'password' try to connect inbox imap_open hostname username password or die 'Cannot connect to Tiriyo.. username password or die 'Cannot connect to Tiriyo ' . imap_last_error echo inbox grab emails emails imap_search inbox 'ALL'..

Best way to access Exchange using PHP?

http://stackoverflow.com/questions/588/best-way-to-access-exchange-using-php

In this case due to these new facts http us3.php.net imap may be the answer as suggested by the other user. share improve..

PHP Displaying unread mail count

http://stackoverflow.com/questions/6707581/php-displaying-unread-mail-count

Displaying unread mail count I am using php imap class. In my box I have a lot of mail but with this script I.. retrieve only the unreaded mail. How can I do it if mbox imap_open . mailserver . . port . INBOX user pass echo Connected.. INBOX user pass echo Connected n else exit Can't connect . imap_last_error . n echo FAIL n if hdr imap_check mbox msgCount hdr..

how to download mails attachment to a specific folder using IMAP and php

http://stackoverflow.com/questions/9974334/how-to-download-mails-attachment-to-a-specific-folder-using-imap-and-php

'yyy@xxxx.net' password 'zzzz' try to connect inbox imap_open hostname username password or die 'Cannot connect to '.. hostname username password or die 'Cannot connect to ' . imap_last_error emails imap_search inbox 'ALL' if emails output.. or die 'Cannot connect to ' . imap_last_error emails imap_search inbox 'ALL' if emails output '' rsort emails foreach..