php 桑迪邮报
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 桑迪邮报相关的知识,希望对你有一定的参考价值。
<?php
/**
* Subscribe User To Sandy Mail
*
* @param name
* @param email
* @example subscribeToSandy("John Doe", "me_email@gmail.com");
*
*/
function subscribeToSandy($name, $email) {
$system = wire("pages")->get("template=system");
$your_installation_url = $system->info->sandy_url; //Your Sendy installation (without the trailing slash)
$list = $system->info->sandy_list_id; //Can be retrieved from "View all lists" page
// Post Data
$postdata = http_build_query(
array(
'name' => $name,
'email' => $email,
'list' => $list,
'boolean' => 'true'
)
);
// Options
$opts = array(
'http' => array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => $postdata
)
);
$context = stream_context_create($opts);
$result = file_get_contents($your_installation_url.'/subscribe', false, $context);
}
// Subscribe user to sandy newsletter
if($input->post->subscribe) {
return subscribeToSandy($name, $email);
}
以上是关于php 桑迪邮报的主要内容,如果未能解决你的问题,请参考以下文章
斯威夫特:阿拉莫菲尔邮报
NOT IN , MATCHES 猪
PHP 按时间排序数组并找到与 X 数字最接近的匹配项
澳洲十大“懒人区”排行榜出炉!Blacktown排名第二!新州AuburnDubbo均在列....
趣闻丨15岁外国中学生自学编程开发游戏 一年收入超27万元
Azure Synapse 外部表位置参数化