You are here

README.txt in Mailchimp 7.2

This module provides integration with the MailChimp email delivery service.
While tools for sending email from your own server, like SimpleNews, are great,
they lack the sophistication and ease of use of dedicated email providers like
MailChimp. Other players in the field are Constant Contact and Campaign Monitor.

mailchimp.module provides provides basic configuration and API integration.
Specific functionality is provided by a set of submodules that depend upon
mailchimp.module. See their respective README's for more details.

## Features
  * API integration
  * Support for an unlimited number of mailing lists
  * Having an anonymous sign up form to enroll users in a general newsletter.
  * Each MailChimp list can be assigned to one or more roles
  * Editing of user list subscriptions on the user's edit page
  * Allow users to subscribe during registration
  * Map token and profile values to your MailChimp merge fields
  * Standalone subscribe and unsubscribe forms
  * Subscriptions can be maintained via cron or in real time
  * Individual subscription blocks for each newsletter
  * Create campaigns containing any Drupal entity as content, send them, and
    view statistics.
  * Campaign activity for any entity with an email address.

## Installation Notes
  * You need to have a MailChimp API Key.
  * You need to have at least one list created in MailChimp to use the
    mailchimp_lists module.
  * For versions 7.x-2.8 and greater, the MCAPI library must be downloaded into
    your libraries folder. It's available at http://apidocs.mailchimp.com/api/downloads/mailchimp-api-class.zip
    or by using the included example drush make file. Proper libraries structure:
    - libraries
      - mailchimp
        - MCAPI.class.php
        - README
    The only required files are MCAPI.class.php and README. (You can delete the 'examples' folder with impunity)
  * For versions 7.x-2.8 and greater, you must have at least version 7.x-2.0 of the libraries module installed.


## Configuration
  1. Direct your browser to http://example.com/admin/config/services/mailchimp
  to configure the module.

  2. You will need to put in your Mailchimp API key for your Mailchimp account.
  If you do not have a Mailchimp account, go to
  [http://www.mailchimp.com]([http://www.mailchimp.com) and sign up for a new
  account. Once you have set up your account and are logged into your account,
  Select "API keys and Authorized Apps" from the Account dropdown menu.

  3. Click Add a Key.
  Copy your newly create API key and go to the
  [Mailchimp config](http://example.com/admin/config/services/mailchimp) page in
  your Drupal site and paste it into the Mailchimp API Key field.
  Batch limit - Maximum number of users to process in a single cron run.
  Mailchimp suggest keeping this below 5000-10000. Use Secure Connection -
  Communicate with the MailChimp API over a secure connection.

## Submodules
  * mailchimp_lists: Synchronize Drupal users with MailChimp lists and allow
    users to subscribe, unsubscribe, and update member information.
  * mailchimp_campaigns: Create newsletters with Drupal content, send the
    campaigns, and view statistics.
  * mailchimp_activity: View campaign activity for any entity with an email
    address.

## Testing
The subscription workflow for mailchimp_lists gets pretty hairy between list
settings, role assignments, user permissions, automated opt-ins, queueing, etc.
There are automated tests built-in to confirm that this workflow is behaving as
expected. To run these tastes, enable the testing module and visit
admin/config/development/testing. You can run the Mailchimp Lists test from
there.

The tests run against a virtual implementation of the Mailchimp API, so they
won't have any effect on your Mailchimp account. If you have tests you would
like to see run, contributions to the testing suite are welcome.

## Related Modules
### Mandrill
  * IMPORTANT: The STS submodule has been removed as it's being deprecated by
    MailChimp in favor of their new Mandrill service. STS has been moved into
    it's own project (http://drupal.org/project/mailchimp_sts) for those already
    using the service. New projects and those willing to make the change should
    definitely use Mandrill.
  * Mandrill is MailChimp's new transactional email service. The initial version
    of the module provides the ability to send all site emails through Mandrill
    with reporting available from within Drupal. Please refer to the project
    page for more details.
  * http://drupal.org/project/mandrill
### MCC, an alternative campaign creation tool.
  * http://drupal.org/project/mcc

File

README.txt
View source
  1. This module provides integration with the MailChimp email delivery service.
  2. While tools for sending email from your own server, like SimpleNews, are great,
  3. they lack the sophistication and ease of use of dedicated email providers like
  4. MailChimp. Other players in the field are Constant Contact and Campaign Monitor.
  5. mailchimp.module provides provides basic configuration and API integration.
  6. Specific functionality is provided by a set of submodules that depend upon
  7. mailchimp.module. See their respective README's for more details.
  8. ## Features
  9. * API integration
  10. * Support for an unlimited number of mailing lists
  11. * Having an anonymous sign up form to enroll users in a general newsletter.
  12. * Each MailChimp list can be assigned to one or more roles
  13. * Editing of user list subscriptions on the user's edit page
  14. * Allow users to subscribe during registration
  15. * Map token and profile values to your MailChimp merge fields
  16. * Standalone subscribe and unsubscribe forms
  17. * Subscriptions can be maintained via cron or in real time
  18. * Individual subscription blocks for each newsletter
  19. * Create campaigns containing any Drupal entity as content, send them, and
  20. view statistics.
  21. * Campaign activity for any entity with an email address.
  22. ## Installation Notes
  23. * You need to have a MailChimp API Key.
  24. * You need to have at least one list created in MailChimp to use the
  25. mailchimp_lists module.
  26. * For versions 7.x-2.8 and greater, the MCAPI library must be downloaded into
  27. your libraries folder. It's available at http://apidocs.mailchimp.com/api/downloads/mailchimp-api-class.zip
  28. or by using the included example drush make file. Proper libraries structure:
  29. - libraries
  30. - mailchimp
  31. - MCAPI.class.php
  32. - README
  33. The only required files are MCAPI.class.php and README. (You can delete the 'examples' folder with impunity)
  34. * For versions 7.x-2.8 and greater, you must have at least version 7.x-2.0 of the libraries module installed.
  35. ## Configuration
  36. 1. Direct your browser to http://example.com/admin/config/services/mailchimp
  37. to configure the module.
  38. 2. You will need to put in your Mailchimp API key for your Mailchimp account.
  39. If you do not have a Mailchimp account, go to
  40. [http://www.mailchimp.com]([http://www.mailchimp.com) and sign up for a new
  41. account. Once you have set up your account and are logged into your account,
  42. Select "API keys and Authorized Apps" from the Account dropdown menu.
  43. 3. Click Add a Key.
  44. Copy your newly create API key and go to the
  45. [Mailchimp config](http://example.com/admin/config/services/mailchimp) page in
  46. your Drupal site and paste it into the Mailchimp API Key field.
  47. Batch limit - Maximum number of users to process in a single cron run.
  48. Mailchimp suggest keeping this below 5000-10000. Use Secure Connection -
  49. Communicate with the MailChimp API over a secure connection.
  50. ## Submodules
  51. * mailchimp_lists: Synchronize Drupal users with MailChimp lists and allow
  52. users to subscribe, unsubscribe, and update member information.
  53. * mailchimp_campaigns: Create newsletters with Drupal content, send the
  54. campaigns, and view statistics.
  55. * mailchimp_activity: View campaign activity for any entity with an email
  56. address.
  57. ## Testing
  58. The subscription workflow for mailchimp_lists gets pretty hairy between list
  59. settings, role assignments, user permissions, automated opt-ins, queueing, etc.
  60. There are automated tests built-in to confirm that this workflow is behaving as
  61. expected. To run these tastes, enable the testing module and visit
  62. admin/config/development/testing. You can run the Mailchimp Lists test from
  63. there.
  64. The tests run against a virtual implementation of the Mailchimp API, so they
  65. won't have any effect on your Mailchimp account. If you have tests you would
  66. like to see run, contributions to the testing suite are welcome.
  67. ## Related Modules
  68. ### Mandrill
  69. * IMPORTANT: The STS submodule has been removed as it's being deprecated by
  70. MailChimp in favor of their new Mandrill service. STS has been moved into
  71. it's own project (http://drupal.org/project/mailchimp_sts) for those already
  72. using the service. New projects and those willing to make the change should
  73. definitely use Mandrill.
  74. * Mandrill is MailChimp's new transactional email service. The initial version
  75. of the module provides the ability to send all site emails through Mandrill
  76. with reporting available from within Drupal. Please refer to the project
  77. page for more details.
  78. * http://drupal.org/project/mandrill
  79. ### MCC, an alternative campaign creation tool.
  80. * http://drupal.org/project/mcc