0

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

文档很差。

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

4

3 回答 3

2

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

但是,您使用的是 PHP,他们创建了一个库供您使用,这也有助于处理模板方面的问题。

于 2015-03-26T14:06:07.390 回答
0

您是否看过有关如何开始使用 SendGrid + Sendwithus 的视频

于 2015-03-26T14:03:01.473 回答
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);

希望这可以帮到你

问候,

罗杰

于 2016-08-29T09:33:38.303 回答