m8rge / alternative-mail
用于 utf8 html/text 电子邮件的简单类,支持小附件
v0.9
2013-08-31 11:53 UTC
This package is auto-updated.
Last update: 2024-08-29 04:19:49 UTC
README
用于 utf8 html/text 电子邮件的简单 php 类,支持小附件
用法
$email = new AlternativeMail(); $email->setFrom('me@mail.localhost') ->addTo('bro@mail.localhost') ->setSubject('True story, bro') ->setTextBody("simple\ntext\nbody") ->send();
或
$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();