有没有办法使用 sendwithus 服务发送电子邮件模板?我搜索了很多,但没有找到。
文档很差。
任何代码示例?我正在使用 PHP
有没有办法使用 sendwithus 服务发送电子邮件模板?我搜索了很多,但没有找到。
文档很差。
任何代码示例?我正在使用 PHP
您是否看过有关如何开始使用 SendGrid + Sendwithus 的视频?
这是一个使用 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);
希望这可以帮到你
问候,
罗杰