PHPackages                             wgg/pimcore-mailchimp - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. wgg/pimcore-mailchimp

AbandonedArchivedPimcore-bundle

wgg/pimcore-mailchimp
=====================

Pimcore Mailchimp Bundle

2.0(4y ago)316Apache-2.0PHPPHP ^8.0

Since Mar 23Pushed 3y ago3 watchersCompare

[ Source](https://github.com/WebGardenGroup/pimcore-mailchimp)[ Packagist](https://packagist.org/packages/wgg/pimcore-mailchimp)[ Docs](https://github.com/WebGardenGroup/mailchimp-bundle)[ RSS](/packages/wgg-pimcore-mailchimp/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (6)Dependencies (7)Versions (8)Used By (0)

WARNING: This repository is abandoned
-------------------------------------

[](#warning-this-repository-is-abandoned)

There is no active support on it.

Feel free to ask if you want to help to keep this project up to date.

---

[![pimcore-mailchimp](./images/logo_fullcolor.svg?raw=true)](./images/logo_fullcolor.svg?raw=true)

Mailchimp integration for Pimcore

[![Packagist](https://camo.githubusercontent.com/d83b87c49b672f45d0c18614365adb63c309a5f558d51262028b3fc11c6db35b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7767672f70696d636f72652d6d61696c6368696d70)](https://packagist.org/packages/wgg/pimcore-mailchimp)[![Software License](https://camo.githubusercontent.com/c8ae6fb0940df4e07387555d5b4f98db8a80608ec774b9e2fa5e12c3ec11b7c2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7767672f70696d636f72652d6d61696c6368696d70)](LICENSE)

#### Requirements

[](#requirements)

- Pimcore X (^10.0.0)

Installation
------------

[](#installation)

```
$ composer require wgg/pimcore-x-mailchimp
```

### Installation via Extension Manager

[](#installation-via-extension-manager)

After you have installed the Mailchimp Bundle via composer, open Pimcore backend and go to `Tools` =&gt; `Bundles`:

- Click the green `+` Button in `Enable / Disable` row
- Click the green `+` Button in `Install/Uninstall` row

### Installation via CommandLine

[](#installation-via-commandline)

After you have installed the Mailchimp Bundle via composer:

- Execute: `$ bin/console pimcore:bundle:enable WggMailchimpBundle`
- Execute: `$ bin/console pimcore:bundle:install WggMailchimpBundle`

Upgrading
---------

[](#upgrading)

### Upgrading via Extension Manager

[](#upgrading-via-extension-manager)

After you have updated the Mailchimp Bundle via composer, open Pimcore backend and go to `Tools` =&gt; `Bundles`:

- Click the green `+` Button in `Update` row

### Upgrading via CommandLine

[](#upgrading-via-commandline)

After you have updated the Mailchimp Bundle via composer:

- Execute: `$ bin/console pimcore:bundle:update WggMailchimpBundle`

### Migrate via CommandLine

[](#migrate-via-commandline)

Does actually the same as the update command and preferred in CI-Workflow:

- Execute: `$ bin/console pimcore:migrations:migrate -b WggMailchimpBundle`

Bundle configuration
--------------------

[](#bundle-configuration)

The bundle currently supports two kind of configuration storage:

- [`Wgg\MailchimpBundle\Storage\FileStorage`](Storage/FileStorage.php) - stores config as YAML file under `PIMCORE_CONFIGURATION_DIRECTORY`
- [`Wgg\MailchimpBundle\Storage\SettingsStoreStorage`](Storage/SettingsStoreStorage.php) - stores config through [`SettingsStore`](https://pimcore.com/docs/pimcore/master/Development_Documentation/Development_Tools_and_Details/Settings_Store.html)

You can configure it:

```
# Use the FileStorage
wgg_mailchimp:
    storage: 'Wgg\MailchimpBundle\Storage\FileStorage' #this is the default
```

```
# Use the SettingsStore
wgg_mailchimp:
    storage: 'Wgg\MailchimpBundle\Storage\SettingsStoreStorage'
```

You can also implement your own storage.

```
