Werx.Email

Source Build Status Total Downloads Latest Stable Version

Use CodeIgniter's email library outside CodeIgniter.

Full Documentation at http://ellislab.com/codeigniter/user-guide/libraries/email.html

Usage

$email = new \werx\Email\Message();
$email->clear();
$email->from('[email protected]', 'My Name');
$email->to('[email protected]');
$email->subject('your subject line');
$email->attach($attachment, 'attachment', 'filename.html', 'text/html');
$email->message('Message body goes here.');
$email->send();

Installation

This package is installable and autoloadable via Composer as werx/email. If you aren’t familiar with the Composer Dependency Manager for PHP, you should read this first.

$ composer require werx/email --prefer-dist

Testing

There are unit tests available for this package. To run them, you must have MailCatcher installed and running.

You can also see the latest build on Travis CI.

$ vendor/bin/phpunit