使用sendgrid在cakephp中批量发送电子邮件

时间:2013-10-25 00:58:57

标签: email cakephp dynamic bulk sendgrid

我正在使用cakePHP发送带有sendgrid的smtp电子邮件。我希望能够对多个收件人执行单个send(),并允许sendgrid使用vars将-name-替换为数组中的名称。

在我的cakephp控制器方法中,我正在测试:

受保护的函数fwtEmail(){

    $config = 'sendGrid';
    $subject = "test";

    $Email = new CakeEmail('sendGrid');

    $names = array('user@domain.com'=>'John','user2@domain' =>'Paul');
    $Email->To($names);

    $vars = array('Paul', 'John');

    $Email->viewVars(array('name' => $vars));

    $Email->from( array('admin@testdomain.com' => 'Jim') );

    $Email->subject($subject);

    $template = 'bulk';

    $Email->template($template, 'default');

    $Email->sendAs = 'both';
    return $Email->send();

}

1 个答案:

答案 0 :(得分:1)

Here is a post on the SendGrid blog执行您所描述的内容。

编辑:道歉,这似乎不适用于最新的cakephp。我正在努力为你寻找解决方案。