Reputation: 6064
I'm working on a website, it has membership. visitor fills form and be member. now somehow I need to forward the email at this signup form to my mailchimp mail list, so from 1 form I will get membership (to my site's db) and added email to mailchimp (for newsletter)
is it possible?
appreciate advises!! thanks!
Upvotes: 1
Views: 1499
Reputation: 5642
Yes, it's possible through Mailchimp's API. You'll need to know programming to do this but I assume since you're on StackOverflow you can handle it. :)
Basically what I do is handle the form registration logic on my application, then send the user's email address and other information through the Mailchimp API's listSubscribe() method to add that user to my mailing list.
http://apidocs.mailchimp.com/1.3/listsubscribe.func.php
Hope that helps!
Upvotes: 2