/** * Address the mail message. * * @param \Illuminate\Mail\Message $mailMessage * @param mixed $notifiable * @param \Illuminate\Notifications\Messages\MailMessage $message * @return void */ protected function addressMessage($mailMessage, $notifiable, $message) { $recipients = empty($message->to) ? $notifiable->routeNotificationFor('mail') : $message->to; if (!empty($message->from)) { $mailMessage->from($message->from[0], isset($message->from[1]) ? $message->from[1] : null); } if (is_array($recipients)) { $mailMessage->bcc($recipients); } else { $mailMessage->to($recipients); } if ($message->cc) { $mailMessage->cc($message->cc); } if (!empty($message->replyTo)) { $mailMessage->replyTo($message->replyTo[0], isset($message->replyTo[1]) ? $message->replyTo[1] : null); } }
/** * Generates a \Illuminate\Mail\Message template ready to send * * @param array $args = [] * @return $this */ public function generateMessage($args = []) { if (!empty($args)) { foreach ($args as $att => $v) { if (array_key_exists($att, get_object_vars($this))) { $this->{$att} = $v; } } } $msg = new Message(new \Swift_Message()); if ($this->hasFrom()) { $from = $this->getFrom(); $msg->from($from[0], $from[1]); } if ($this->hasSender()) { $sender = $this->getSender(); $msg->sender($sender[0], $sender[1]); } if ($this->hasTo()) { $to = $this->getTo(); $msg->to($to[0], $to[1]); } if ($this->hasCc()) { $cc = $this->getCc(); $msg->cc($cc[0], $cc[1]); } if ($this->hasBcc()) { $bcc = $this->getBcc(); $msg->bcc($bcc[0], $bcc[1]); } if ($this->hasReplyTo()) { $reply_to = $this->getReplyTo(); $msg->replyTo($reply_to[0], $reply_to[1]); } if ($this->hasSubject()) { $msg->subject($this->getSubject()); } if ($this->hasAttach()) { foreach ($this->getAttach() as $attach) { $msg->attachData($attach[0], $attach[1], $attach[2]); } } if ($this->hasPriority()) { $msg->priority($this->getPriority()); } $this->setMessage($msg); return $this; }