MailPoet可以与Postman SMTP或Gmail API一起使用吗?

时间:2017-05-16 07:14:13

标签: wordpress email gmail-api swiftmailer

我想使用MailPoet 3将我的网站更新发送给订阅者,但是MailPoet没有内置方式可以使用wp_mail(),Postman SMTP或Gmail API进行发送。 (我能找到)

有没有人让这些组件一起工作?似乎可行的可能是:

1. MailPoet -> SwiftMailer -> Gmail API transport
2. MailPoet -> SwiftMailer -> wp_mail() -> Postman SMTP
3. MailPoet -> SwiftMailer -> Postman SMTP

我愿意写一个SwiftMailer传输并更改MailPoet插件来做我想要的但真的希望现有的解决方案。

1 个答案:

答案 0 :(得分:0)

看起来像一个老问题,但也有一个旧答案:https://cfxdesign.com/email-wordpress-posts-to-subscribers-with-mandrill-and-mailpoet/

我还没有测试过,但这是他们的解决方案,将其添加到functions.php文件中

function mailpoet_enable_wpmail(){
  if(class_exists('WYSIJA')){
    $model_config = WYSIJA::get('config','model');
    $model_config->save(array('allow_wpmail' => true));
  }
}
add_action('init', 'mailpoet_enable_wpmail');