mailchimp

Sending Welcome Email when using Mailchimp API 3 List/Member Method

别等时光非礼了梦想. 提交于 2019-12-12 10:33:45
问题 Is there a way to send the Mailchimp Welcome Email when using Mailchimp API 3 List/Member method? Older API implementations can do it without the need for Automation (paid feature), but I am not sure if API 3 supports it in List/Member method. I am referring to emails that users usually get when they sign up using a standard Mailchimp form. For instance, this script will not send a Welcome email or any other post-sign up Mailchimp emails. $apikey = '<api_key>'; $auth = base64_encode( 'user:'.

Mailchimp API (v1.3): addresses added with listSubscribe() don't appear in dashboard

亡梦爱人 提交于 2019-12-12 09:58:29
问题 I'm using Mailchimp's API (v1.3) to add email addresses to a subscriber list on one of our sites. Obviously, I'm using listSubscribe() and everything is working fine, for the most part (read: API call returns true, all of the data I'm sending to Mailchimp gets added/updated correctly). The problem, however, is that whenever a new address is added, the things that are normally supposed to happen (in particular: email notifications to list manager, addresses showing up in the dashboard list

Mailchimp Classic ASP endpoint error

99封情书 提交于 2019-12-12 05:26:13
问题 I'm using a method illustrated here: http://apidocs.mailchimp.com/api/downloads/serialized_xml_listsubscribe.asps I am using a correct API Key and ListID - However, when running the script I am getting the following response: "You must specify a email_address value for the listSubscribe method -90" I've searched and mailed their support but had no reply back as yet. Has anyone had a similar issue - any thoughts on it there's a parameter missing? Cheers. Heres the code from the Mailchimp

MailChimp Interested Value in “Group” always false after “subscribing”

馋奶兔 提交于 2019-12-12 04:49:38
问题 I send over proper json formatted code, according to v2 api docs: lists/subscribe.json "GROUPINGS":[{"id":removed_id,"name":"grouping_name","groups":["group_name"]}] I get back information about a member... It does not say they are interested in that group name.. lists/member-info.json "GROUPINGS":[{"id":removed_id,"name":"grouping_name","form_field":"hidden","groups": [{"name":"group_name","interested":false},{"name":"other_group_name","interested":false}, {"name":"other_group_name2",

Mailchimp - how to tell when a user's status is set to pending

本小妞迷上赌 提交于 2019-12-12 03:35:25
问题 I'd like to be able to tell in my webhook when a user's status is set to pending . Setting a user's status to pending triggers a Profile Update event, but as far as I can see there is nothing in the form values posted to my webhook about the user's status for this event. 回答1: This looks like a feature request for MailChimp. Absent that, you can always query the user's info from the API to get their current status. 来源: https://stackoverflow.com/questions/43034831/mailchimp-how-to-tell-when-a

iOS mail client doesnt render html email

对着背影说爱祢 提交于 2019-12-12 03:33:20
问题 Using MailChimp to fireoff emails from my rails platform. It uses only a body with inline styling and no js. It renders fine on all web clients and mobile clients (iOS and Android) except for iOS's native mail client. When pulling up the email in the iOS native mail client, i can see the email for about 50-100 ms, then it disappears, leaving just a white blank page. It looks as if its getting "pop up blocked". The content itself is 3 colored divs filled with text and images. Any one ever

SSL certificate error unable to get local issuer certificate

∥☆過路亽.° 提交于 2019-12-12 03:14:13
问题 This error is only present on my webserver online. I am using a updated cacert.pem and referencing it in my php.ini file in my localhost server. My question is how this could be done on a typical web server? (by how I mean referencing the cacert.pem via the php.ini ) Alternatively is there a way I can define it within my function or Mailchimps API function that i am using which was installed via composer ? My current function: bootstrap.php require_once __DIR__ . '\..\..\lib\Cake\Network\Http

send array of checkbox values to mailchimp via mailchimp api 2.0

倾然丶 夕夏残阳落幕 提交于 2019-12-12 01:03:19
问题 I'm using this Mailchimp 2.0 PHP wrapper: https://github.com/drewm/mailchimp-api To send data to my list via the Mailchimp 2.0 API. I can get email, firstname, and lastname to send successfully from my form to mailchimp. I set those up as required fields in mailchimp(EMAIL, FNAME, LNAME). Here is the PHP for that: $MailChimp = new MailChimp('xxxxxxx'); $result = $MailChimp->call('lists/subscribe', array( 'id' => 'xxxxxx', //required fields 'email' => array( 'email' => $_POST['email']), 'merge

Mailchimp API getting error and can't use ajax success

白昼怎懂夜的黑 提交于 2019-12-11 12:39:13
问题 I have problem with getitng correct response from mailchimp API V2.0. When I try subscribe new user var arr = { apikey:"xxxx", id:"secretListId", email:{ email:"jd@example.com" }, double_optin:"false" } function jsonpCallback (){ alert("jsonpCallback"); }; $.ajax({ type: 'GET', url: 'https://us6.api.mailchimp.com/2.0/lists/subscribe.json', dataType: 'jsonp', jsonpCallback: 'jsonpCallback', data: arr, timeout: 4000, cache: false, async: false, success: function(data, textStatus, jqXHR) { alert

Mailchimp - Redirect to thank you page

谁说胖子不能爱 提交于 2019-12-11 12:02:47
问题 I am using Mail Chimp and in one of my forms when someone registers via custom form, a message appears at the bottom saying 'Check your email for a confirmation email' or something like that. I would like to have them redirect to a thank you page (the standard one will do) instead of a message just appearing, I have been banging my head against a wall trying to figure this out, but I can't seem to find a way to do this.....any suggestions? 回答1: When creating an embedded form, be sure to