Exemplo n.º 1
0
 /**
  * Update mail record with parsed fields
  *
  * @param array $email
  */
 protected function updateMail(array $email)
 {
     if ($this->type === 'receiver' && $email['variables']['hash'] === null) {
         $this->mail->setSenderMail($email['senderEmail']);
         $this->mail->setSenderName($email['senderName']);
         $this->mail->setSubject($email['subject']);
     }
 }