werx/email

Composer-friendly wrapper for CI Email.

1.2.1 2022-06-27 15:05 UTC

This package is auto-updated.

Last update: 2024-03-27 18:45:51 UTC


README

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('me@example.com', 'My Name');
$email->to('you@example.com');
$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.

$ vendor/bin/phpunit