如何使用sendwithus发送模板电子邮件?

时间:2015-03-26 13:17:04

标签: php sendgrid mandrill sendwithus

有没有办法使用sendwithus服务发送电子邮件模板? 我搜索了很多,但没有找到。

文档很差。

任何代码示例?我正在使用PHP

3 个答案:

答案 0 :(得分:2)

您可以在此处找到SendWithUs模板文档:https://www.sendwithus.com/docs/templating。它解释了API调用和您需要用来替换存储在SendWithUs中的模板方面的格式。

然而,你正在使用PHP而且他们created a library仅供你使用,这也有助于模板化方面。

答案 1 :(得分:0)

您是否看过video如何开始使用SendGrid + Sendwithus?

答案 2 :(得分:0)

这是一个使用sendwithus发送电子邮件的简单类:

<?php    

use sendwithus\API;   

require_once 'vendor/autoload.php';


class Sendwithus {

    const TEST_API_KEY = 'test_api_key_here';

    //three examples in the web...just for testing...
    const SENDWITHUS_BALLON_PARTY = 'tem_id_1';
    const SENDWITHUS_HAPPY_EMAIL = 'tem_id_2';
    const SENDWITHUS_ROBOT_WELCOME = 'tem_id_3';

    private $api;

    public function __construct(){
        $options = array(
            'DEBUG' => true
        );

        //login into Sendwithus with API key...
        $this->api = new API(self::LIVE_API_KEY, $options);
    }

    public function send($template_id){
        $this->api->send(
            $template_id,
            array('address' => 'foo@email.com')
        );
    }

}

//send email...
$sendwithus = new Sendwithus();
$sendwithus->send($sendwithus::SENDWITHUS_BALLON_PARTY);

希望这可以帮到你

此致

罗杰