A PHP library for reading email and attachments using POP and IMAP protocols.
Fetch is a PHP library for reading email messages and attachments using POP and IMAP protocols. It provides an object-oriented interface to connect to mail servers, retrieve messages, and extract attachments, simplifying email interaction in PHP applications.
PHP developers who need to programmatically access email from IMAP or POP servers, such as those building email processing tools, notification systems, or mail client integrations.
Developers choose Fetch for its clean, object-oriented API that abstracts the complexities of IMAP/POP protocols, making email retrieval straightforward without requiring low-level protocol knowledge.
An IMAP library for PHP
Open-Awesome is built by the community, for the community. Submit a project, suggest an awesome list, or help improve the catalog on GitHub.
Provides clean PHP classes like Server and Message, making email interaction intuitive, as shown in the sample usage code for accessing subject and body.
Supports both IMAP and POP protocols, abstracting low-level details so developers don't need raw protocol knowledge, per the key features.
Manages email attachments directly through the library, simplifying extraction without manual MIME parsing, as highlighted in the description.
Indicated by build status badges, coverage reports, and download metrics in the README, suggesting ongoing project health and community support.
The README explicitly warns to review changes before minor updates due to an unstable API until version 1.0, risking breaking changes in development.
Relies on PHP's imap extension, which can be tricky to configure, as noted in the Ubuntu setup note requiring manual CLI linking.
Focuses only on reading emails via IMAP/POP, with no built-in support for sending emails or advanced operations like email composition or server-side filtering.