我正在使用mandrill应用程序从我的网站发送电子邮件。 我知道如何使用Mandrill发送模板。
我想动态更改模板。我不知道怎么做。 在Site上,他们提到使用 | --- | 动态更改模板。在这里,他们提到了如何在JSON代码中声明全局合并变量。
我的问题是如何在PHP代码中定义全局合并变量?
答案 0 :(得分:0)
可能我误解了你的问题,但这是我的回答: 我假设您正在使用mandrill php library 然后
require 'Mandrill.php';
$mandrill = new Mandrill($password);
$message = array(
'html' => $html //here you can provide your html for template
//receiver and so on
);
$mandrill->messages->send($message);