Download the PHP package rapidwebltd/simplemailchimp without Composer

On this page you can find all versions of the php package rapidwebltd/simplemailchimp. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package simplemailchimp

🐵 SimpleMailChimp

SimpleMailChimp is a simplified wrapper for common MailChimp functionality.

Installation

To install this package, just use composer.

If your framework does not already do so, you must add require_once "vendor/autoload.php" to any files in which you wish to use SimpleMailChimp.

Getting Started

In order to create a SimpleMailChimp object, call the getByAPIKey function from the SimpleMailChimpFactory and pass it your API key.

Subscribing a user to a list

To subscribe a user to a list call the subscribe function and pass through the MailChimp list id and the user's email.

If successful it will return an array containing the subscriber's data.

Unsubscribing a user from a list

To unsubscribe a user from a list call the unsubscribe function and pass through the MailChimp list id and the user's email.

If successful it will return an array containing the subscriber's data.

Getting a subscriber's details

To get the details of a specific subscriber from a list call the getSubscriberDetails function and pass through the MailChimp list id and the user's email.

If successful it will return an array containing the subscriber's data.

Checking to see if a subscriber is already on a list and subscribed

To see if a subscriber is already on a list and is subscribed call the isSubscribedToList function and pass through the MailChimp list id and the user's email.

This function will return TRUE if the subscriber is found on the list AND is subscribed to it and return FALSE if either the user is not found on the list OR is in the list but set to unsubscribed.

Getting all the members of a list

To get all the members of a list call the getAllUsersInList function and pass through the MailChimp list id and a comma separated list of the specific fields you want to return. If no parameters are set it retrieves the member's email by default.

Will return an array of emails belonging to members of the list specified.

Will return an array of emails and the relevant statuses belonging to members of the list specified. Available parameters can be found on the MailChimp API documentation page (under 'Response body parameters' -> 'members' -> 'Show properties'): http://developer.mailchimp.com/documentation/mailchimp/reference/lists/members/#read-get_lists_list_id_members.

Note that this function returns all members of a list regardless of whether they are subscribed or not.


All versions of simplemailchimp with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3
drewm/mailchimp-api Version 2.*
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package rapidwebltd/simplemailchimp contains the following files

Loading the files please wait ....