【发布时间】:2015-07-16 02:05:35
【问题描述】:
我正在使用 https://github.com/abishekrsrikaanth/mailto 包在 mandrill 中处理我的电子邮件。该软件包有一种方法来安排这样的电子邮件。
$timestamp = new DateTime('+1 hour');
$mandrill = MailTo::Mandrill();
$mandrill->addRecipient($email, $name)
->setFrom($email, $name)
->setHtml($html)
->setText($text)
->setSubject($subject)
->send($timestamp);
但我找不到取消预定电子邮件的方法。我读了这个文档https://mandrillapp.com/api/docs/messages.JSON.html#method=cancel-scheduled
请求 JSON
{
"key": "example key",
"id": null
}
但我不知道如何实现。有人可以帮我解决这个问题吗?
【问题讨论】:
标签: php json email laravel-4 mandrill