Download the PHP package asimlqt/mailchimp-export without Composer
On this page you can find all versions of the php package asimlqt/mailchimp-export. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download asimlqt/mailchimp-export
More information about asimlqt/mailchimp-export
Files in asimlqt/mailchimp-export
Package mailchimp-export
Short Description A library to export Mailchimp lists
License Apache-2.0
Homepage https://github.com/asimlqt/mailchimp-export
Informations about the package mailchimp-export
mailchimp-export
A simple library to export Mailchimp lists
Requires PHP >= 7
Installation
Use the following composer command to install
Example
The following is an example that exports a mailchimp list and saves it to a csv file.
Writers
There are currently 2 writers that are provided by default:
CSV Writer
See example above.
Database Writer
CAUTION: The table specified will be truncated before being written to!
This requires a little more configuration than the csv writer.
The constructor has the following definition:
$pdo
is just a standard php pdo connection object.
$table
is the name of the table that you want to write to
$mapping
is an array that maps mailchimp fields to database columns. The key of the array is the name of the mailchimp field and the value is the database column.
Example of using the database writer:
In the above example 'Email Address', 'First Name' and 'Last Name' are names of mailchimp fields and 'email', 'firstname' and 'lastname' are database columns they will be written to. The CsvWriter
just writes everything to a csv file as is hence it doesn't require a mapping.
The data is inserted into the database in batches. The default size is 100 rows. You can set that to a different value if you wish using setBatchSize()
method of DatabaseWriter
Custom Writer
If you need to write the data elsewhere then simply extend the Writer
interface which only has one method and pass it to the ListExport
constructor.