denismitr/utf-mailer

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

My Mailer that avoids all the spam filters

Maintainers

Package info

github.com/denismitr/UTF-Mailer

pkg:composer/denismitr/utf-mailer

Statistics

Installs: 19

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

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 protected]')
		->from('My Name', '[email protected]')
		->title('My message')
		->body($template)
		->send();