php Programming Glossary: imap_open
Workaround for PHP IMAP functions? Trying to work with incoming email on localhost using XAMPP http://stackoverflow.com/questions/10582984/workaround-for-php-imap-functions-trying-to-work-with-incoming-email-on-localho user my email address @gmail.com pass my password mailbox imap_open connect user pass I get the error Can't open mailbox imap.gmail.com.. user my email address @gmail.com pass my password mailbox imap_open connect user pass Now when I load the page it just hangs for..
Putting E-mail into “sent” folder after PHP mail function http://stackoverflow.com/questions/10975488/putting-e-mail-into-sent-folder-after-php-mail-function project where I am accessing an e mail account using PHP's imap_open . I know that I can send an e mail with PHP using the mail function...
Is there an error in PHP's imap_fetch_overview()-function when reading headers with brackets? http://stackoverflow.com/questions/11989915/is-there-an-error-in-phps-imap-fetch-overview-function-when-reading-headers-w mailbox imap_open imap.server.tld norsh mail@server.tld MC imap_check mailbox..
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 'my gmail address' password 'my gmail password' connection imap_open connect_to user password or die Can't connect to ' connect_to'.. I execute this code I get the following output Warning imap_open function.imap open Couldn't open stream imap.gmail.com 993 imap..
accessing my gmail inbox via php code http://stackoverflow.com/questions/1385797/accessing-my-gmail-inbox-via-php-code PHP imap functions and do something like this php mailbox imap_open imap.googlemail.com 993 ssl INBOX USERNAME@googlemail.com PASSWORD..
Processing IMAP email in PHP http://stackoverflow.com/questions/1603637/processing-imap-email-in-php IMAP folder as well. I'm poking around PHP documentation imap_open http us2.php.net imap 5Fopen and found a link http www.linuxscope.net..
How can I save email attachments to the server in PHP? http://stackoverflow.com/questions/162576/how-can-i-save-email-attachments-to-the-server-in-php the files. Here's a rough outline of the code if mbox imap_open myserver.com 110 pop3 notls INBOX u p die 'Cannot connect check..
Fetching mail from a POP3 server using php http://stackoverflow.com/questions/3165014/fetching-mail-from-a-pop3-server-using-php difference is the option string that you're passing to imap_open to quote that page To connect to a POP3 server on port 110 on.. 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 it's.. Other than that it's fair sailing you won't need more than imap_open imap_num_msg imap_body imap_delete and imap_close for basic..
download gmail attachements from php http://stackoverflow.com/questions/3395422/download-gmail-attachements-from-php password 'davidwalsh' try to connect inbox imap_open hostname username password or die 'Cannot connect to Gmail '..
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 'username' password 'password' try to connect inbox imap_open hostname username password or die 'Cannot connect to Tiriyo..
PHP Displaying unread mail count http://stackoverflow.com/questions/6707581/php-displaying-unread-mail-count retrieve only the unreaded mail. How can I do it if mbox imap_open . mailserver . . port . INBOX user pass echo Connected n else..
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 ' . imap_last_error..
|