2

Has anyone used Mailchimp api with YII framework? Is there an well documented extension? I found an extension but it has no documentation https://github.com/jamesmoey/Yii-MailChimp.

1 Answers1

3

There is a well documented php api from mailchimp, there is no need for a yii extension. Simply include the MCAPI.class.php and create a MCAPI object with your api key. You will have all functions available like listSubscribe($id, $email_address) etc.

Edit

The extension you refer to is a simple wrapper for the official wrapper. You will have the same methods available.

Tim
  • 929
  • 1
  • 14
  • 28