mailchimp

MailChimp API - dynamic content - mc:repeatable + mc:edit

社会主义新天地 提交于 2020-01-05 04:33:07
问题 My email template has some intro text followed by a repeatable block [a picture + a button]. I would like to repeat this block some X times and each time have picture link and button link updated with new links. Currently I am using this payload to edit one block, and it is working as intended. I have used this SO answer as a guideline. var data = { 'template': { 'id': template_id, 'sections': { 'editbutton': '<a class="mcnButton " title="Get Profile" href="' + button1 + '" target="_blank"

PharData extractTo method failed to extract .tar.gz on linux environment

邮差的信 提交于 2020-01-04 04:11:09
问题 I would like to extract .tar.gz file into the particular folder. I have used cURL to download the .tar.gz file from MailChimp batch operation. I have used below code to extract tar file. $phar = new \PharData('upload/test.tar.gz'); $phar->extractTo('upload/',null, true); It is working on windows environment. But on Linux(Ubuntu), I got below error when to run above code. Uncaught exception 'PharException' with message 'Extraction from phar "upload/test.tar" failed: Cannot extract ".",

Mailchimp Multiple Subscription Forms for one list

拥有回忆 提交于 2020-01-03 13:08:59
问题 I embedded three different customized mailchimp forms in an html page that point to one list (each form has two similar fields and one different hidden field). Everything works excluding one thing. The responses messages (success or error) are displayed in the same page in the div #mce-response only for the first form. In the other two the responses are loaded and displayed in another blank page. I'd like to have the reponses displayed in the same page for all the three forms. I'm not a Java

Mailchimp Multiple Subscription Forms for one list

房东的猫 提交于 2020-01-03 13:08:46
问题 I embedded three different customized mailchimp forms in an html page that point to one list (each form has two similar fields and one different hidden field). Everything works excluding one thing. The responses messages (success or error) are displayed in the same page in the div #mce-response only for the first form. In the other two the responses are loaded and displayed in another blank page. I'd like to have the reponses displayed in the same page for all the three forms. I'm not a Java

How to edit the plain text version of a Mailchimp automation email?

余生长醉 提交于 2020-01-01 06:00:16
问题 I've been running an automation workflow with Mailchimp for a while, which has a simple welcome Newsletter. The Automation email editor only lets me edit the HTML version of the email, and auto-generates a text-based version. However, it only generates the plain text version when the email is first created. I have edited the HTML version several times since then, and only just realised that the plain text version is still stuck at its initial state. I can't find any way to edit that plain

Mandrill problem with sending emails: Message not sent: queued

馋奶兔 提交于 2020-01-01 05:04:22
问题 I have an issue with using Mandrill to send emails, I created an account and a new template but when I try to send a test of that template ... I get the following message even I had ever send an email. " Message not sent: queued " 回答1: I fixed it for whose who have the same pb , i sent an email to Mandrill support help@mandrill.com and they fixed it this is there replay: Hi there, Thanks for reaching out. Your account matched some of our automated abuse detection heuristics and was paused

How to send email through MailChimp 3.0 api?

北战南征 提交于 2020-01-01 02:31:25
问题 I'm trying to send email through mailchimp api version 3.0 in php, but i have no luck. This is my code: $postString = '{ "message": { "html": "this is the emails html content", "text": "this is the emails text content", "subject": "this is the subject", "from_email": "xxx@dyyy.sk", "from_name": "John", "to_email": "aaa.bbb@gmail.com", "to_name": "Anton", "track_opens": false, "track_clicks": false }}'; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $this->api_endpoint); curl_setopt($ch,

Mandrill and view in browser functionality

笑着哭i 提交于 2020-01-01 01:11:35
问题 Anyone know if Mandrill support a "View in browser" functionality like the MailChimp |ARCHIVE| variable. If not, can I use the search functionality to fetch a send mail (for example if I know some specific metadata for the mail in question)? Or would I have to render the template and store it myself for later retrieval? 回答1: The best bet is to store a copy on your server that you can link to from within an email when it makes sense, such as for bulk emails. The ARCHIVE merge tag isn't

Add MailChimp subscriber to group with signup form, not API

心已入冬 提交于 2019-12-31 22:40:53
问题 I know you can do this with the API, but not sure about the regular signup form. Does anyone know if it is possible to add some code to the advanced signup form in MailChimp that would automatically add them to a specific group within my list? I am only collecting the email address and I don't want the subscriber to have to select the group manually. If they are using that form, I want them added to that group. I have asked MailChimp for help, but they tell me that their customer support

Rails: Which is the preferred Mailchimp gem?

家住魔仙堡 提交于 2019-12-31 09:21:14
问题 Which is the preferred gem or plugin for using the Mailchimp API with Rails? There's a list here, but I have yet to try any: mailchimp ruby Any feedback is appreciated! Thanks! 回答1: With recent research, we found the gibbon gem to be a full featured and easy to use API wrapper for MailChimp. Hominid seems a bit more complex to use, and lacking in community discussion. The Gibbon gem is located at https://github.com/amro/gibbon I found some great blog posts that describe how to get started