Skip to content

Commit

Permalink
Update example mail address in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroendesloovere committed May 17, 2018
1 parent 4b5c4ac commit c29e0d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ mailmotor.list_id: xxx # enter the mailchimp default list_id here
```php
$this->get('mailmotor.subscriber')->subscribe(
$email, // f.e.: 'jeroen@siesqo.be'
$email, // f.e.: 'info@jeroendesloovere.be'
$language, // f.e.: 'nl'
$mergeFields, // f.e.: ['FNAME' => 'Jeroen', 'LNAME' => 'Desloovere']
$interests, // f.e.: ['9A28948d9' => true, '8998ASAA' => false]
Expand Down Expand Up @@ -72,7 +72,7 @@ $this->get('mailmotor.subscriber')->isSubscribed(
use MailMotor\Bundle\MailMotorBundle\Exception\NotImplementedException;

// Don't forget to add validation to your $email
$email = 'jeroen@siesqo.be';
$email = 'info@jeroendesloovere.be';

try {
if ($this->get('mailmotor.subscriber')->isSubscribed($email)) {
Expand Down Expand Up @@ -104,7 +104,7 @@ if ($noErrors)
use MailMotor\Bundle\MailMotorBundle\Exception\NotImplementedException;

// Don't forget to add validation to your $email
$email = 'jeroen@siesqo.be';
$email = 'info@jeroendesloovere.be';

try {
// Email exists
Expand Down

0 comments on commit c29e0d4

Please sign in to comment.