如何使用 sendwithus 发送模板电子邮件?
How to send a template email using sendwithus?
有什么方法可以使用 sendwithus 服务发送电子邮件模板吗?
我搜索了很多,但没有找到。
文档很差。
有代码示例吗?我正在使用 PHP
您看过这篇关于如何开始使用 SendGrid + Sendwithus 的video吗?
您可以在此处找到 SendWithUs 模板文档:https://www.sendwithus.com/docs/templating。它解释了 API 调用和您需要使用的格式来替换存储在 SendWithUs 中的模板的各个方面。
但是,您正在使用 PHP,他们 created a library 仅供您使用,这也有助于模板方面的事情。
这里有一个简单的 class 使用 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);
希望对您有所帮助
此致,
罗杰
有什么方法可以使用 sendwithus 服务发送电子邮件模板吗? 我搜索了很多,但没有找到。
文档很差。
有代码示例吗?我正在使用 PHP
您看过这篇关于如何开始使用 SendGrid + Sendwithus 的video吗?
您可以在此处找到 SendWithUs 模板文档:https://www.sendwithus.com/docs/templating。它解释了 API 调用和您需要使用的格式来替换存储在 SendWithUs 中的模板的各个方面。
但是,您正在使用 PHP,他们 created a library 仅供您使用,这也有助于模板方面的事情。
这里有一个简单的 class 使用 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);
希望对您有所帮助
此致,
罗杰