Deprecated due to old API sunsets. Please use cf-mailchimp instead by Kevin Morris.
Influenced by http://mailchimp.riaforge.org/ but as it has errors and hadn't been updated since May 6, 2011, we started rewriting the API wrapper at fh group with intentions of keeping it workable for others as well as maintained.
We use it heavily at fh group with our clients and wish to contribute back to the open source community that continually drives what we do and feeding our passion.
Currently, we have not implemented the full API nor have we even implemented the full list
section of the api.
git clone [email protected]:fh-group/MailChimp-ColdFusion-API-Wrapper.git
- Move
includes/cf/mailchimp.cfc
to where ever you have your collection of .cfcs. - Instantiate the object and use the API method below.
For now, please read the documentation within the source/cfc itself.
- Attain feature-parity with current 1.3 API.
- Complete
list-related
section of The API. - Complete
campaign-related
section of The API - Complete
campaign-stats
section of The API ...
- Fork our repository on Github
- Clone it to your local machine:
git clone [email protected]:<yourname>/MailChimp-ColdFusion-API-Wrapper.git
cd MailChimp-ColdFusion-API-Wrapper
- Add the main repository as a remote:
git remote add upstream git://github.com/fh-group/MailChimp-ColdFusion-API-Wrapper.git
- For each section or individual change, create a new branch:
git fetch upstream && git checkout -b <branchname> upstream/master
- Make your edits
- When done:
git commit -a
- Push your changes back to the remote repository:
git push origin <branchname>
- Your changes will then be reviewed, commented upon, and then added into the repository.