mailchimp

Create a basic MailChimp signup form using their API

非 Y 不嫁゛ 提交于 2019-11-27 10:04:51
I'm new to MailChimp and need some help. With their basic newsletter signup form... you simply embed some prepackaged HTML into your page. However the problem with this is that clicking on submit redirects to a MailChimp page. ( I don't want to redirect to MailChimp, I want the user to stay on own website after hitting submit. ) They provide an API and plenty of documentation but just about zero useful examples. The API is supposed to allow me to do a full integration with my site or application. It seems that when I read something in their docs that applies to me, I click the link to get more

Too many DNS lookups in an SPF record

二次信任 提交于 2019-11-27 09:36:56
问题 My website needs to send out emails with Google Apps, SendGrid and MailChimp services. Google Apps is used to receive and read incoming email to my domain. I need to set the SPF record for my domain. The following is syntactically correct (not sure about A and MX tokens): "v=spf1 a mx include: _spf.google.com include: servers.mcsv.net include: sendgrid.net ~all" But if I test it with http://www.kitterman.com/getspf2.py I get PermError SPF Permanent Error: Too many DNS lookups Similar problem

I need to do a http request to a mail chimp subscription list via a component post

烂漫一生 提交于 2019-11-27 04:54:02
问题 I need to do a http request to a mail chimp subscription list via a component post I've read the mail chimp documentation and couldnt find anything on this. I also tried their mail chimp embedded form in an angular 2 html5 view but that doesnt work for some weird reason. So I've resulted to doing a http request to the subscribe list instead and I'm having trouble getting that working. I'm using typescript, angular2 and mail chimp This is my code so far: subscribe = () => { var url = "https:/

HTML email in Gmail - CSS style attribute removed

大憨熊 提交于 2019-11-27 02:06:23
问题 I'm working on an HTML email and I am using MailChimp's Responsive Email Templates in combination with their CSS inliner tool. For the most part, the email looks great across the myriad of email clients, but in Gmail things are horribly misrepresented. If I use Gmail's "Show original" option from the drop down menu next to the reply arrow, the original HTML is different from what is actually displayed in the email client. I can confirm this by inspecting the element with the developer tools.

Simple php function to send an email with Mandrill

流过昼夜 提交于 2019-11-27 00:27:55
问题 What is the easiest way to send an email via Mailchimp's Mandrill service (using the API). Here's the send method: https://mandrillapp.com/api/docs/messages.html#method=send Here's the API wrapper: https://bitbucket.org/mailchimp/mandrill-api-php/src/fe07e22a703314a51f1ab0804018ed32286a9504/src?at=master But I can't figure out how to make an PHP function that will send and email via Mandrill. Can anyone help? 回答1: We also have an official API wrapper for PHP, which is available on Bitbucket

Adding subscribers to a list using Mailchimp's API v3

点点圈 提交于 2019-11-26 23:41:37
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 patches—will be available for those versions. UPDATE 1 : I did some further research based on TooMuchPete

Launch Mailchimp evil popup onclick

六月ゝ 毕业季﹏ 提交于 2019-11-26 23:21:36
问题 Styling <link href="//cdn-images.mailchimp.com/embedcode/classic-081711.css" rel="stylesheet" type="text/css"> <style type="text/css"> #mc_embed_signup{position:absolute; top:0; left:0; width:100%; height:100%; background-color:rgba(0,0,0,.8);display:none;z-index:10000; } #mc_embed_signup form{position:fixed; top:10%; left:50%; width:50%; margin-left:-25%; font:normal 100% Helvetica,Arial,sans-serif; font-size:14px; border-radius:4px; border:none; padding:10px 20px; background-color:#fff;

Create a basic MailChimp signup form using their API

十年热恋 提交于 2019-11-26 17:54:57
问题 I'm new to MailChimp and need some help. With their basic newsletter signup form... you simply embed some prepackaged HTML into your page. However the problem with this is that clicking on submit redirects to a MailChimp page. ( I don't want to redirect to MailChimp, I want the user to stay on own website after hitting submit. ) They provide an API and plenty of documentation but just about zero useful examples. The API is supposed to allow me to do a full integration with my site or

AJAX Mailchimp signup form integration

故事扮演 提交于 2019-11-26 09:25:49
Is there any way to integrate mailchimp simple (one email input) with AJAX, so there is no page refresh and no redirection to default mailchimp page. This solution doesn't work jQuery Ajax POST not working with MailChimp Thanks gbinflames You don't need an API key, all you have to do is plop the standard mailchimp generated form into your code ( customize the look as needed ) and in the forms "action" attribute change post?u= to post-json?u= and then at the end of the forms action append &c=? to get around any cross domain issue. Also it's important to note that when you submit the form you

AJAX Mailchimp signup form integration

旧巷老猫 提交于 2019-11-26 02:04:22
问题 Is there any way to integrate mailchimp simple (one email input) with AJAX, so there is no page refresh and no redirection to default mailchimp page. This solution doesn\'t work jQuery Ajax POST not working with MailChimp Thanks 回答1: You don't need an API key, all you have to do is plop the standard mailchimp generated form into your code ( customize the look as needed ) and in the forms "action" attribute change post?u= to post-json?u= and then at the end of the forms action append &c=? to