Exemple #1
0
 /**
  * Execute the job
  *
  * @throws \Exception
  */
 public function execute()
 {
     $message = $this->getContent();
     if (!$this->emailService->send($message)) {
         throw new \Exception('snif');
     }
 }
Exemple #2
0
 public function send()
 {
     return $this->service->send($this->message);
 }