https://github.com/halojoy/phpimapclass
Easy Class for download of Emails from your inbox. Written in PHP uses IMAP extension for client.
https://github.com/halojoy/phpimapclass
class client emails imap inbox php php7 ssl
Last synced: 10 days ago
JSON representation
Easy Class for download of Emails from your inbox. Written in PHP uses IMAP extension for client.
- Host: GitHub
- URL: https://github.com/halojoy/phpimapclass
- Owner: halojoy
- License: mit
- Created: 2018-04-24T04:57:24.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-25T07:44:01.000Z (about 8 years ago)
- Last Synced: 2025-02-27T03:18:56.834Z (over 1 year ago)
- Topics: class, client, emails, imap, inbox, php, php7, ssl
- Language: PHP
- Size: 6.84 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### phpImapClass
Easy to use Class for download of Emails from your inbox.
Written in PHP and uses IMAP extension for client.
```
Class phpImap
{
PUBLIC METHODS:
__construct($host=null, $user=null, $pass=null, $folder=null)
close($this->mbox)
listFolders()
loadEmails($criteria='ALL', $descending=true)
showEmails($directory=false)
overView()
downloadAttachments($directory)
displayEmail($num)
loadHeader($num)
loadBody($num)
loadAttachments($num, $directory=false)
hasAttachments($num)
loadStructure($num)
PRIVATE METHODS:
getPart()
get_mime_type()
}
```