denismitr/utf-mailer

This package is abandoned and no longer maintained. No replacement package was suggested.

My Mailer that avoids all the spam filters

v2.0.2 2016-06-27 17:53 UTC

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();