我正在尝试使用PHP订阅电子邮件到MailChimp列表。我实际上不是后端开发人员,所以我停滞不前:(
我正在使用MailChimp帮助程序PHP库:https://github.com/drewm/mailchimp-api
我已经搜索了所有互联网,我所能获得的是500内部服务器错误的状态。我已经在制作服务器了。
<?php
include("./inc/MailChimp.php");
use \DrewM\MailChimp\MailChimp;
$api_key = "xxxxxxxxxxx-us13";
$list_id = "7xxxxxxx4";
$MailChimp = new MailChimp($api_key);
$result = $MailChimp->post("lists/$list_id/members", [
"email_address" => $_POST["txt_mail"],
'merge_fields' => ['FNAME'=>$_POST["txt_name"], 'FPHONE'=>$_POST["txt_phone"], 'FMSG'=>$_POST["txt_message"]],
"status" => "subscribed"
]);
if ($MailChimp->success()) {
echo "<h4>Thank you, you have been added to our mailing list.</h4>";
} else {
echo $MailChimp->getLastError();
} ?>
答案 0 :(得分:5)
哦,男人,你没有想法,当我遇到这个问题时,这个问题让我很沮丧。
幸运的是,我在Misha Rudrastyh找到了这个方便的东西,它与API 3.0的效果非常好。这里是要点:
由于我使用的是Wordpress,我首先将以下代码放入我的functions.php
文件中(此处使用您的变量进行编辑)
<?php
function rudr_mailchimp_subscriber_status( $email, $status, $list_id, $api_key, $merge_fields = array('FNAME'=> '', 'FPHONE'=> '', 'FMSG'=> '') ){
$data = array(
'apikey' => $api_key,
'email_address' => $txt_mail,
'status' => $status,
'merge_fields' => $merge_fields
);
$mch_api = curl_init(); // initialize cURL connection
curl_setopt($mch_api, CURLOPT_URL, 'https://' . substr($api_key,strpos($api_key,'-')+1) . '.api.mailchimp.com/3.0/lists/' . $list_id . '/members/' . md5(strtolower($data['email_address'])));
curl_setopt($mch_api, CURLOPT_HTTPHEADER, array('Content-Type: application/json', 'Authorization: Basic '.base64_encode( 'user:'.$api_key )));
curl_setopt($mch_api, CURLOPT_USERAGENT, 'PHP-MCAPI/2.0');
curl_setopt($mch_api, CURLOPT_RETURNTRANSFER, true); // return the API response
curl_setopt($mch_api, CURLOPT_CUSTOMREQUEST, 'PUT'); // method PUT
curl_setopt($mch_api, CURLOPT_TIMEOUT, 10);
curl_setopt($mch_api, CURLOPT_POST, true);
curl_setopt($mch_api, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($mch_api, CURLOPT_POSTFIELDS, json_encode($data) ); // send data in json
$result = curl_exec($mch_api);
return $result;
}
那么我在表单流程中添加了变量字段:
<?php
$email = $_POST['txt_mail'];
$FNAME=$_POST['txt_name'];
$FPHONE=$_POST['txt_phone'];
$FMSG=$_POST['txt_message'];
$status = 'pending'; // "subscribed" or "unsubscribed" or "cleaned" or "pending"
$list_id = 'xxxxxxxxxxx-us13'; // where to get it read above
$api_key = 'xxxxxxxxxxx-us13'; // where to get it read above
$merge_fields = array('FNAME' => $FNAME, 'FPHONE' => $FPHONE, 'FMSG' => $FMSG);
rudr_mailchimp_subscriber_status($email, $status, $list_id, $api_key, $merge_fields );
?>
我希望这会有所帮助。我挣扎了一段时间,直到我意识到如何正确地做到这一点。