Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/progerxp/mimeil
A standalone class for completely customizable MIME-compliant message builder/sender. Includes Laravel bundle layer. Supports PHP 5.3+.
https://github.com/progerxp/mimeil
Last synced: about 2 months ago
JSON representation
A standalone class for completely customizable MIME-compliant message builder/sender. Includes Laravel bundle layer. Supports PHP 5.3+.
- Host: GitHub
- URL: https://github.com/progerxp/mimeil
- Owner: ProgerXP
- Created: 2013-04-25T15:24:01.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-23T13:33:37.000Z (about 11 years ago)
- Last Synced: 2023-03-23T09:25:07.541Z (almost 2 years ago)
- Language: PHP
- Homepage: http://proger.i-forge.net/MiMeil
- Size: 160 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MiMeil
**MiMeil** - flexible MIME message builder covering most useful specification features.
It has no dependencies and works out of the box with **PHP 5.3 and up** - simply include it and you're ready to go. **iconv** and **mbstring** extensions are recommended for certain features.
Check for last PHP 5.2-compatible version in the first revision of this repo.
**Unless you're using Laravel MiMeil is just a single file (`mimeil.php`).**
[ [Method reference](http://proger.i-forge.net/MiMeil) ]
## [Laravel bundle](http://bundles.laravel.com/bundle/mimeil)
```
php artisan bundle:install mimeil
```After this:
* Add it to your `application/bundles.php`; if you use `'auto' => true` class aliases will be created automatically.
* Create `application/config/mimeil.php` (use `config-sample.php` as a template) to override default values used when building/sending an e-mail. Keys are names of instance properties of `MiMeil`.
* Use `LaMeil` class instead of `MiMeil` if you want to have a convenient Laravel-oriented layer that, for example, logs errors and uses your config files.