mailchimp

Mandrill and view in browser functionality

半世苍凉 提交于 2019-12-03 04:21:08
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? 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 supported in Mandrill automatically, as that's specific for a campaign in MailChimp that may be sent to a large

Email Template builder like Mailchmip [closed]

依然范特西╮ 提交于 2019-12-03 03:52:41
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. i want to edit email templates like mailchimp, is there any jQuery plugin available which is similar to email builder like mailchimp, which i can integrate in my php application. Yes it's called jQuery drag and drop template builder: http://simbyone.com/drag-and-drop-newsletter-builder-using-jquery/ Look at this http://mosaico.io/ , it's open source in github https://github.com/voidlabs/mosaico Also this one beeFree is a

Realize Mailchimp Double-Opt-In with API 3.0

妖精的绣舞 提交于 2019-12-02 17:54:47
I´m looking for a comfortable way to realize double opt-in via mailchimp API 3.0 . It looks like there was an option in version 2.0 which told mailchimp to send an opt-in confirmation email automatically as soon as a new member is added via API call. It seems this parameter is not available any more in API 3.0. Has anyone an idea how to realize it with the new version of the API? When using Double Opt In on a list, people who have filled out your signup form will have an API status of pending until they confirm their subscription. In order to mimic that functionality in API v3.0, set the user

How to integrate MailChimp in C#/.Net

这一生的挚爱 提交于 2019-12-02 15:55:33
I want to send email through MailChimp. How to do this in .Net? Does any one have sample code? Thanks. Take a look at the PerceptiveMCAPI on CodePlex: PerceptiveMCAPI - A .NET friendly wrapper for the MailChimp Api written in C# by Perceptive Logic. http://perceptivemcapi.codeplex.com/ The example below will send a opt-in email: First install the NuGet package: Install-Package mcapi.net static void Main(string[] args) { const string apiKey = "6ea5e2e61844608937376d514-us2"; // Replace it before const string listId = "y657cb2495"; // Replace it before var options = new List.SubscribeOptions();

MailChimp API 2.0 and PHP Subscribe Form

流过昼夜 提交于 2019-12-02 10:06:09
So I have a form that submits an email string. I want this to go into a MailChimp list I have setup that has an email, first name, and last name. For this particular form, I only want it to send an email and leave the first and last name fields blank. Anyways, after looking at the documentation (I'm not a super pro at this), but I put together the PHP that processes once the form has been submitted. Anyways it doesn't work, the email doesn't get added to my MailChimp list. I even double checked the API Key and List ID. Below is my code that has to do with the MailChimp subscription processing:

How to send email using MailChimp API

。_饼干妹妹 提交于 2019-12-02 05:15:36
问题 I'm creating an app in nodejs to send an email using MailChimp. I've tried to use https://apidocs.mailchimp.com/sts/1.0/sendemail.func.php but changed it to use 3.0 api because 1.0 seems to no longer work (big surprise). I've setup my app with var apiKey = '<<apiKey>>', toEmail = '<<emailAddress>>', toNames = '<<myName>>', message = { 'html': 'Yo, this is the <b>html</b> portion', 'text': 'Yo, this is the *text* portion', 'subject': 'This is the subject', 'from_name': 'Me!', 'from_email': '',

mailchimp oauth2 in ASP.NET keep returning invalid_grant

这一生的挚爱 提交于 2019-12-02 03:27:33
问题 I am developing a new app at work, that offers integration with MailChimp. Basically it enables users to easily export their customer contact info directly to a MailChimp account (that is, to a specific mailing-list inside MailChimp). All that works, and are somewhat irrelevant to my question. For not asking the user to enter MailChimp-credentials every time, I'm about to implement the oauth2 authorization workflow as described here: http://apidocs.mailchimp.com/oauth2/ It works just fine in

mailchimp oauth2 in ASP.NET keep returning invalid_grant

和自甴很熟 提交于 2019-12-02 02:07:15
I am developing a new app at work, that offers integration with MailChimp. Basically it enables users to easily export their customer contact info directly to a MailChimp account (that is, to a specific mailing-list inside MailChimp). All that works, and are somewhat irrelevant to my question. For not asking the user to enter MailChimp-credentials every time, I'm about to implement the oauth2 authorization workflow as described here: http://apidocs.mailchimp.com/oauth2/ It works just fine in step 1-3, but step 4 is killing me.. Its my first time working with oauth, but I seem to understand the

Mailchimp API 3.0 Batch Subscribe

我的梦境 提交于 2019-12-01 21:13:31
Acconding to the documentation a POST to /lists/{list_id} should batch subscribe or unsubscribe list members. If I send two members; one new member and one unsubscribed member: { "update_existing":true, "members":[ { "email_address":"yyyy@yyy.yy", "email_type":"html", "status":"subscribed" }, { "email_address":"xxx@xxx.xx", "email_type":"html", "status":"subscribed" } ] } The documentation( http://developer.mailchimp.com/documentation/mailchimp/reference/lists/#create-post_lists_list_id ), states that the resulting JSON will include an array with new_members, updated_members and an array with

Unable To Connect Laravel to MailChimp (laravel 5.4)

你离开我真会死。 提交于 2019-12-01 14:07:53
I have to define List ID and MailChimp API Key in my .env file. I'm sure both are fine even I am not getting any error but email in not inserting in my List I installed https://github.com/spatie/laravel-newsletter ( spatie/laravel-newsletter ) Package. Here is my method public function subscribe(Request $request) { $email = request('email'); Newsletter::subscribe($email); Session::flash('subscribed', 'Successfully subscribed.'); return redirect()->back(); } Then I check subscribe Method in Newsletter.php it is as public function subscribe($email, $mergeFields = [], $listName = '', $options = [