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 aa8395a commit 73169ee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion MailMotorCampaignMonitorBundle.php
Expand Up @@ -7,7 +7,7 @@
/**
* MailMotor CampaignMonitor Bundle
*
* @author Jeroen Desloovere <jeroen@siesqo.be>
* @author Jeroen Desloovere <info@jeroendesloovere.be>
*/
class MailMotorCampaignMonitorBundle extends Bundle
{
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -39,7 +39,7 @@ parameters:

```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 @@ -81,7 +81,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 @@ -113,7 +113,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 73169ee

Please sign in to comment.