mailchimp

Cannot create segment using MailChimp API v3

拜拜、爱过 提交于 2019-12-30 09:04:20
问题 I'm using the "playground" to test creating a segment but I keep getting validations errros my request: { "name": "MyTest", "options": { "match": "any", "conditions": [ { "field": "EMAIL", "op": "is", "value": "p001@mymaildomain.xxx" }, { "field": "EMAIL", "op": "is", "value": "p002@mymaildomain.xxx" } ] } } response is: type: http://kb.mailchimp.com/api/error-docs/400-invalid-resource title: Invalid Resource status: 400 detail: The resource submitted could not be validated. For field

Does @font-face work in email templates?

偶尔善良 提交于 2019-12-30 04:15:06
问题 Is there a way that I can embed custom web fonts using CSS's @font-face in email templates. This question is specifically related to email templates in MailChimp, but I would also like to know if there is a cross-browser solution that works on all or most email subscription services? I have considered embedding it in the style header this way: @font-face { src: url("http://www.remoteserver.com/fonts/font.otf"); font-family: Font; } But I am afraid this would drastically effect page load. Is

Adding subscribers to a list using Mailchimp's API v3

心已入冬 提交于 2019-12-27 18:23:31
问题 I'm trying to add users to a list I've created in Mailchimp but I can't find any code examples anywhere. I've tried figuring out how to use the API but I'm very much a "Look at an example and learn" kind of person. I've tried using version 2 of the API but nothing seems to be working despite working from examples on the net and Mailchimp says the following about earlier versions of their API on their website: Versions 2.0 and earlier are deprecated. Only minimal support—bug fixes, security

Adding subscribers to a list using Mailchimp's API v3

六月ゝ 毕业季﹏ 提交于 2019-12-27 18:22:26
问题 I'm trying to add users to a list I've created in Mailchimp but I can't find any code examples anywhere. I've tried figuring out how to use the API but I'm very much a "Look at an example and learn" kind of person. I've tried using version 2 of the API but nothing seems to be working despite working from examples on the net and Mailchimp says the following about earlier versions of their API on their website: Versions 2.0 and earlier are deprecated. Only minimal support—bug fixes, security

Adding subscribers to a list using Mailchimp's API v3

删除回忆录丶 提交于 2019-12-27 18:22:19
问题 I'm trying to add users to a list I've created in Mailchimp but I can't find any code examples anywhere. I've tried figuring out how to use the API but I'm very much a "Look at an example and learn" kind of person. I've tried using version 2 of the API but nothing seems to be working despite working from examples on the net and Mailchimp says the following about earlier versions of their API on their website: Versions 2.0 and earlier are deprecated. Only minimal support—bug fixes, security

How to remove the divide between table rows in e-mail shot?

跟風遠走 提交于 2019-12-25 07:26:14
问题 I recently mocked up an e-mail marketing (mail chimp) e-mail in Photoshop, and exported it into HTML (using tables and inline styles (unfortunately) so that it appears correctly in all/most e-mail clients. However, after sending myself a test e-mail to see how it appears in my Gmail account, I can see there is a white dividing line between each row of my table, which I cannot seem to remove or find when I inspect it in Google Chrome. Can anybody tell me how to remove these dividers? My full

Share Google Drive Folder via Zapier with Mailchimp trigger

痞子三分冷 提交于 2019-12-24 12:08:27
问题 I can't figure out how to format the "Custom Value for Sharing Preference" on this Zap I'm trying to create that will share a Google Drive folder with my new Mailchimp subscribers. I've been able to get the File ID using the Drive API, but I'm not sure how to provide the Custom Value that should come from the New Mailchimp Subscriber Email. If I simply choose the Email address from the Mailchimp dropdown provided by Zapier and test it, I get an error: We had trouble sending your test through.

mandrill integration with osclass 3.3.x

人走茶凉 提交于 2019-12-24 12:02:22
问题 I try to setup mail server for my Osclass website.but it doesn't work . I try every port 25, 587 or 2525 for non encryption but it not work. Is there is any mandrill plugin available for Osclass? anyone who has already integrated mandrill and Osclass can please tell what is missing? 回答1: it looks like you're not specifying an email address in the "Mail from" field, which might be causing some issues because you do need to specify a sender email address and not just a name. However, if you're

MailChimp API v2: Validation Error

北城余情 提交于 2019-12-24 03:42:53
问题 I have this problem with Mailchimp that my call seems to be denied and fail. Somehow Mailchimp Support can not even see that I tried to call them with this code $data = array( 'apikey' => "APIKEY-USXX", 'cid' => "CID", ); $data = json_encode($data); echo '<pre>'; var_dump($data); echo '</pre>'; $submit_url = "https://us10.api.mailchimp.com/2.0/reports/opened.json"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $submit_url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch,

Ionic2 / Angular2 MailChimp API GET response

跟風遠走 提交于 2019-12-24 03:23:58
问题 Okey so I've got a little problem with MailChimp response. So here is the thing. I want to check the status of the subscribed user. I have the PHP code which is works fine and i have the code which is also works fine so I get the response BUT I can't use the response after it. So here is the codes: I have a MailService provider which contain this function: postCheck(post: {email: string}): Observable<any>{ const email = JSON.stringify(post); let headers = new Headers(); headers.append(