Skip to content
This repository has been archived by the owner on Nov 30, 2017. It is now read-only.

Commit

Permalink
fixxed syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
OskarStark committed Oct 8, 2014
1 parent 5673cd4 commit 7a33b3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -281,7 +281,7 @@ mz_mail_chimp:
$mailChimp = $this->get('MailChimp');
$list = $mailChimp->getList();
$segmentId = $list->listStaticSegmentAdd('first_segment');
$batch = array('test1@example.com',test2@example.com');
$batch = array('test1@example.com', 'test2@example.com');
$list->listStaticSegmentMembersAdd($segmentId, $batch);

```
Expand All @@ -306,7 +306,7 @@ mz_mail_chimp:
$campaign = $mailChimp->getCampaign();
$list = $mailChimp->getList();
$segmentId = $list->listStaticSegmentAdd('first_segment');
$batch = array('test1@example.com',test2@example.com');
$batch = array('test1@example.com', 'test2@example.com');
$list->listStaticSegmentMembersAdd($segmentId, $batch);
$conditions[] = array(
'field' => 'static_segment',
Expand Down

0 comments on commit 7a33b3a

Please sign in to comment.