This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$message = \Swift_Message::newInstance() | |
->setSubject('Hello Email') | |
->setFrom('[email protected]') | |
->setTo('[email protected]') | |
->setBody('You should see me from the profiler!') | |
; | |
$this->get('mailer')->send($message); |