模板管理
更新时间:2022-07-21
创建模板
通过以下代码可以申请一个SMS模板:
try {
$resp = $this->client->createTemplate($name, $content, $smsType, $countryType, $description);
} catch (Exception $exception) {
print_r($exception);
}
提示:详细的参数配置及限制条件,可以参考SMS API详情创建模板
获取模板详情
通过以下代码可以获取指定的SMS模板详情:
try {
$resp = $this->client->getTemplateDetail($templateId);
} catch (Exception $exception) {
print_r($exception);
}
提示:详细的参数配置及限制条件,可以参考SMS API详情查询模板
变更模板
通过以下代码可以更新指定的SMS模板:
try {
$this->client->updateTemplate($templateId, $name, $content, $smsType, $countryType, $description);
} catch (Exception $exception) {
print_r($exception);
}
提示:详细的参数配置及限制条件,可以参考SMS API详情变更模板
删除模板
通过以下代码可以删除指定的SMS模板:
try {
$this->client->deleteTemplate($templateId);
} catch (Exception $exception) {
print_r($exception);
}
提示:详细的参数配置及限制条件,可以参考SMS API详情删除模板