Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ole1986/mailreceiver
PHP MailReciver is used to fetch mails and filter the result
https://github.com/ole1986/mailreceiver
filter imap mail php php-library pop3 saerch
Last synced: 21 days ago
JSON representation
PHP MailReciver is used to fetch mails and filter the result
- Host: GitHub
- URL: https://github.com/ole1986/mailreceiver
- Owner: ole1986
- Created: 2017-12-24T11:10:58.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-07T13:04:07.000Z (almost 7 years ago)
- Last Synced: 2024-04-18T19:01:54.092Z (7 months ago)
- Topics: filter, imap, mail, php, php-library, pop3, saerch
- Language: PHP
- Homepage:
- Size: 472 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MailReceiver
Version: 1.0.3 | License: MIT | Author: ole1986This class is used to receive and filter emails from either an IMAP or POP3 account using the PHP extension "php_imap"
## Example
```
new Ole1986\MailReceiver("{hostname:143}INBOX", "username", "password");
// add '/novalidate-cert' to the hostname to skip certificate validation// fetch unread emails containing subject "Mail queue"
$me->Unread()->Subject("Mail queue")->FetchAll();
```