Download the PHP package smart/emailreader without Composer

On this page you can find all versions of the php package smart/emailreader. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package emailreader

EmailReader

Build Status Latest Stable Version Total Downloads License

This library will read emails of a specific mailbox, will parse them and finally, dispatch them to handlers. How to install

This library is used to read email (you can inject your own by implementing the DriverInterface) : https://github.com/tedious/Fetch

Inside our Fetch driver, we used this library to parse the last email reply : https://github.com/willdurand/EmailReplyParser

How is it working ?

  1. This library contains a command which is gonna check all new emails in your mailbox and give them to gearman. 1 new email = 1 new task on gearman.
  2. The gearman job will read the email, parse it and then, dispatch it to your application.
  3. Once gearman is finished with this email, the email is move to another folder to mark it as processed.

configuration

Config Default Description
domain Address of your mail serveur (eg. imap.gmail.com)
port 143 SSL port is usually 993, normal is 143
service Imap Imap or Pop
username You email username, most of the time it's your email
password Your email password
main mailbox The mailbox where this library will read new emails
processed mailbox Where to move the emails once processed

example :

Dispatch

This library come with a dispatcher base class which allows you to handle different kind of email. The handlers on the dispatcher work like a router on the email subject.

example

Imagine we have support ticket system on our app. We want our customer to be able to reply directly to the email to add their reply in our ticket system.

About dispatchers :

Installation

Dependencies

This should be place in your app container

Gearman job

We use Sinergi gearman : https://github.com/sinergi/gearman

Register Command

We use symfony console : https://github.com/symfony/Console

Finally, you just need to add a cron on that command every few minutes to read incoming email and dispatch them into your application.


All versions of emailreader with dependencies

PHP Build Version
Package Version
Requires php Version >=5.6
symfony/console Version ~2
sinergi/token Version <1
psr/log Version ~1
tedivm/fetch Version 0.6.*
willdurand/email-reply-parser Version ~2.3
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package smart/emailreader contains the following files

Loading the files please wait ....