denismitr / utf-mailer
My Mailer that avoids all the spam filters
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/denismitr/utf-mailer
Requires
- php: >=5.5
This package is auto-updated.
Last update: 2020-01-22 22:45:21 UTC
README
#UTF-Mailer Easy PHP class for sending emails. Avoids all the spam filters. Uses templates. Easy to use and does not require any dependencies
##Version 2
##Usage
$template = (new Template('/path/to/tempaltes/'))->render('contacts', $attributes);
UTFMail::to('email@email.com')
->from('My Name', 'my@email.com')
->title('My message')
->body($template)
->send();