mailchimp

Mailchimp - how can I tell if a user has unsubscribed themselves?

橙三吉。 提交于 2019-12-24 03:15:31
问题 So they've clicked the unsubscribe link in a newsletter. In their profile it says, for example: This person unsubscribed on Mar 24, 2017 2:40 pm After receiving "Newsletter Test#6" Great, but how can I tell programmatically, via the API, if someone has unsubscribed themselves? Is it even possible? The reason I'm asking is because you can't delete someone who has unsubscribed themselves. If you try, their data will be scrubbed but the email address will stay in your list. Furthermore, if you

Email forwarding and tracking with mandrill and django [closed]

风格不统一 提交于 2019-12-24 01:54:37
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . Mandrill is a fairly new transactional email service from the makers of MailChimp. I would like to use this service to track emails for clients. Similar to this question about a rails implementation of tracking and forwarding, my Django application would provide each user with a unique email address, and any

How to create list member with ADDRESS using Mailchimp API v3

两盒软妹~` 提交于 2019-12-23 11:56:09
问题 The ADDRESS is a Merge Field but the documentation (http://developer.mailchimp.com/documentation/mailchimp/reference/lists/members/) is not clear on how to pass it to the API, since it has sub fields for street, zip, city etc. Does anybody have an example how to do this? 回答1: This JSON works: { "addr1" : "first line", "addr2" : "second line", "city" : "city", "state": "state", "zip": "zip code", "country": "country" } It's documented in schema here: https://us1.api.mailchimp.com/schema/3.0

How to pass email address to webhook from mailchimp

╄→尐↘猪︶ㄣ 提交于 2019-12-23 04:06:29
问题 I am building a web app in PHP that subscribes and unsubscribes members from a mailchimp list via the API. What I'm trying to add (and having extreme difficulty with) is use the mailchimp web hook features to pass the email address of someone that has unsubscribed through mailchimp to the hook that I have created on my app to that it will then update the database. The app expects to receive the below url to update the database domain.com/includes/mailchimp-update.php?email=mail@domain.com I

Setting Mailchimp campaign content html not working

梦想与她 提交于 2019-12-23 04:05:35
问题 I tried to update my campaign html content using mailchimp api: /campaigns/{campaign_id}/content You can find more information about this api here: https://developer.mailchimp.com/documentation/mailchimp/reference/campaigns/content/# Before sending a campaign, I tried to get campaign content html, modified it and then set campaign content html using above api. I just simply use BeautifulSoup to append a new tag to content body: content.body.append(BeautifulSoup('<p>Mailchimp is freaking

Using MailChimp WebHooks feature

我的未来我决定 提交于 2019-12-23 03:03:21
问题 Can someone please provide examples of doing this in ASP.NET. We want to do some MailCHimp – internal database synchronization and plan to do this using webhooks feature but we just can’t get it work. We want to use web hooks to synch data when someone unsubscribes from mail chimp. Another thing to address is security. How can we secure this page from being accessed by malicious users? 回答1: Here is a piece of code that works for us. This is fairly simple but it did take us some experimenting

Using MailChimp WebHooks feature

最后都变了- 提交于 2019-12-23 03:03:00
问题 Can someone please provide examples of doing this in ASP.NET. We want to do some MailCHimp – internal database synchronization and plan to do this using webhooks feature but we just can’t get it work. We want to use web hooks to synch data when someone unsubscribes from mail chimp. Another thing to address is security. How can we secure this page from being accessed by malicious users? 回答1: Here is a piece of code that works for us. This is fairly simple but it did take us some experimenting

Open Link on Twitter App IOS

浪尽此生 提交于 2019-12-23 02:56:45
问题 I have created a mail template on mailchimp. It consists of a twitter link. But an IPad or an IPhone user clicks on the link from his/her mail, the twitter link opens in the browser instead of the twitter app. This does not happen in Android. Any workarounds? 回答1: If you use a custom URL <a href="twitter://" than other Android/Desktop devices won't be able to open it. Twitter doesn't redirect with standard URLs from Safari and they should. But they do offer a "Open in app" button at the top

Mailchimp Conditional Merge tags using a date field not working

拜拜、爱过 提交于 2019-12-22 13:55:56
问题 This is not about the API. This is about using Mailchimp and setting conditional merge fields in the backend of Mailchimp when building a campaign. So this question is about how Mailchimp works rather than about integrating Mailchimp via an API or something similar. (You're still here? Great! :-) I'm trying to use a date field to show conditional content. I have 3 people in my test mailing list, one with birthday 1/1/1960, one with 1/1/1970 and one with 1/1/1980. I've set up an email with

Send an email via MailChimp

六眼飞鱼酱① 提交于 2019-12-22 10:01:41
问题 I think problem is around $api->listSubscribers() include('../libs/mailchimp/MCAPI.class.php'); $options = array('list_id' => '$list_id', 'subject' => 'Prova', 'from_name' => 'name', 'from_email' => 'info@example.com'); $content = array('html' => '<p>Testo di prova</p>'); $api = new MCAPI($apikey); $campaignId = $api->campaignCreate('trans', $options, $content); $api->listSubscribe($options['list_id']); $api->campaignSendNow($campaignId); if ($api->errorCode){ echo "Unable to Create New