m8rge / alternative-mail
Simple class for utf8 html/text emails with small attachments
Installs: 67
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/m8rge/alternative-mail
This package is auto-updated.
Last update: 2025-09-29 02:41:57 UTC
README
Simple php class for utf8 html/text emails with small attachments
Using
$email = new AlternativeMail(); $email->setFrom('me@mail.localhost') ->addTo('bro@mail.localhost') ->setSubject('True story, bro') ->setTextBody("simple\ntext\nbody") ->send();
or
$email = new AlternativeMail(); $email->setFrom('me@mail.localhost', 'Your brother') ->addTo('bro@mail.localhost', 'My Bro') ->addTo('bro2@mail.localhost', 'My Bro, too') ->setSubject('True story, bro') ->setTextBody("simple\ntext\nbody") ->setHtmlBody('<hr />html message<hr />') ->addAttachment(__FILE__, 'forceName.php', 'application/x-php') ->send();