(lldb) po mergeVars
$0 = 0x0d822d70 {
APPNAME = PicrossHD;
FNAME = Tod;
LNAME = Cunningham;
"MC_LANGUAGE" = ja;
}--
You received this message because you are subscribed to a topic in the Google Groups "MailChimp API Discuss" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/mailchimp-api-discuss/4sevnL7kc74/unsubscribe.
To unsubscribe from this group and all its topics, send an email to mailchimp-api-di...@googlegroups.com.
To post to this group, send email to mailchimp-...@googlegroups.com.
Visit this group at http://groups.google.com/group/mailchimp-api-discuss.
For more options, visit https://groups.google.com/groups/opt_out.
// Get mailchimp API instance
$oApi = MailchimpApi::getInstance(); // Contains API key and List ID
// Collect data
$sEmailAddr ='pe...@test.de';
$aMergeVars = array(
'FNAME' => 'Peter',
'LNAME'=> 'Test',
'MC_LANGUAGE' => 'de',
);
// Subscribe user
$blSuccess = $oApi->listSubscribe($oApi->list_id, $sEmailAddr, $aMergeVars);*|IF:MC_LANGUAGE=de|*Bitte bestätigen Sie Ihre Newsletter-Anmeldung!*|END:IF|*
... So I thought that this group should be the right place for my answer :-)
Dirk