dustinmoorman / mandrill
简单的Mandrill脚本。
dev-master
2016-04-16 23:31 UTC
This package is not auto-updated.
Last update: 2024-09-24 01:51:16 UTC
README
Mandrill PHP客户端。
易于使用
include 'Mandrill.php'; $m = new \Dustinmoorman\Mandrill\Mandrill( 'Dustin Moorman', 'from_address@example.com', 'reply_to_me@example.com', '5555MandrillApiKey5555555ANJCuUF-qg' ); $m->setTitle('Test Email'); $m->setHTML('<div>Sending a test email.</div>'); $m->addRecipient('mistayayha@gmail.com', 'Yishai'); $m->send();