4

Mailchimp 将每个表单与一个列表联系起来。

我想在 Page1.html 上有一个注册表单,将用户发送到 Page1ty.html,在 Page2.html 上有另一个表单,将用户发送到 Page2ty.html。但是两种形式都需要将用户输入到同一个列表中。如上所述,使用它们的基本形式是不可能的。我需要两个清单。

Mailchimp 说这种路由可能使用他们的 API 是可能的。有谁知道如何完成上述类型的注册?

4

1 回答 1

6

您只需创建自定义表单并绑定到 MailChimp API,但在他们的最新更新中,您需要确保您拥有管理员权限。

您从他们的API 下载中包含(需要)MCAPI.class.php和文件,然后编写您的流程(我使用)。config.inc.phpPHP

下载文件并使用正确的凭据(API 密钥和列表 ID)设置“config.inc.php”文件后,您就可以开始使用了。

这是一个为用户订阅列表的示例PHP,但您必须阅读 API 文档才能获得您正在寻找的确切功能。

<?php
session_start();

// ---  Sample fields - depends on your list
$mailChimpTIME = date('Y-m-d H:i:s');
$mailChimpFirstName = // First Name
$mailChimpLastName = // Last Name
$mailChimpEmailAddress = // Email Address

require_once 'MCAPI.class.php';
require_once 'config.inc.php'; //contains apikey

$api = new MCAPI($apikey);

$merge_vars = array(
'FNAME'=>$mailChimpFirstName, 
'LNAME'=>$mailChimpLastName, 
'EMAIL'=>$mailChimpEmailAddress,
'OPTIN_IP'=>$_SERVER['REMOTE_ADDR'], 
'OPTIN_TIME'=>$mailChimpTIME
);

$email_type = 'html';
$double_optin = true;
$update_existing = true;
$replace_interests = false;

// By default this sends a confirmation email - you will not see new members
// until the link contained in it is clicked!
$retval = $api->listSubscribe( $listId, $mailChimpEmailAddress, $merge_vars, $email_type, $double_optin, $update_existing, $replace_interests);

if ($api->errorCode){
    echo "Unable to load listSubscribe()!\n";
    echo "\tCode=".$api->errorCode."\n";
    echo "\tMsg=".$api->errorMessage."\n";
} else {
    // Success
    //echo "Subscribed - look for the confirmation email!\n";
}
?>
于 2013-04-03T15:03:43.597 回答