Skip to content

Instantly share code, notes, and snippets.

@julienhay
Created December 22, 2014 10:47
Show Gist options
  • Save julienhay/ae03c7804d68332ae9d1 to your computer and use it in GitHub Desktop.
Save julienhay/ae03c7804d68332ae9d1 to your computer and use it in GitHub Desktop.
Send mail mandrill
$dispatcher = $this->get('hip_mandrill.dispatcher');
$message = new Message();
$message
->setFromEmail('mail@example.com')
->setFromName('Customer Care')
->addTo('jules.hay@gmail.com')
->setSubject('Some Subject')
->addGlobalMergeVar('FNAME', 'HELLO LES COCO2');
$result = $dispatcher->send($message);
dump($result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment