setTo() public method

Recipients set in this field will receive a copy of this message. This method has the same synopsis as {@link setFrom()} and {@link setCc()}. If the second parameter is provided and the first is a string, then $name is associated with the address.
public setTo ( mixed $addresses, string $name = null )
$addresses mixed
$name string optional
Ejemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 public function to($address, string $name = null, bool $override = false) : MessageContract
 {
     if ($override) {
         $this->swift->setTo($address, $name);
         return $this;
     }
     return $this->addAddresses($address, $name, 'To');
 }
Ejemplo n.º 2
0
 private function _restoreMessage(Swift_Mime_Message $message)
 {
     // restore original headers
     $headers = $message->getHeaders();
     if ($headers->has('X-Swift-To')) {
         $message->setTo($headers->get('X-Swift-To')->getNameAddresses());
         $headers->removeAll('X-Swift-To');
     }
     if ($headers->has('X-Swift-Cc')) {
         $message->setCc($headers->get('X-Swift-Cc')->getNameAddresses());
         $headers->removeAll('X-Swift-Cc');
     }
     if ($headers->has('X-Swift-Bcc')) {
         $message->setBcc($headers->get('X-Swift-Bcc')->getNameAddresses());
         $headers->removeAll('X-Swift-Bcc');
     }
 }
Ejemplo n.º 3
0
 /**
  * Send the given Message to all recipients individually.
  * 
  * This differs from {@link send()} in the way headers are presented to the
  * recipient.  The only recipient in the "To:" field will be the individual
  * recipient it was sent to.
  * 
  * If an iterator is provided, recipients will be read from the iterator
  * one-by-one, otherwise recipient data will be retreived from the Message
  * object.
  * 
  * Sender information is always read from the Message object.
  * 
  * The return value is the number of recipients who were accepted for
  * delivery.
  * 
  * @param Swift_Mime_Message $message
  * @param array &$failedRecipients, optional
  * @param Swift_Mailer_RecipientIterator $it, optional
  * @return int
  * @see send()
  */
 public function batchSend(Swift_Mime_Message $message, &$failedRecipients = null, Swift_Mailer_RecipientIterator $it = null)
 {
     $failedRecipients = (array) $failedRecipients;
     $sent = 0;
     $to = $message->getTo();
     $cc = $message->getCc();
     $bcc = $message->getBcc();
     if (!empty($cc)) {
         $message->setCc(array());
     }
     if (!empty($bcc)) {
         $message->setBcc(array());
     }
     //Use an iterator if set
     if (isset($it)) {
         while ($it->hasNext()) {
             $message->setTo($it->nextRecipient());
             $sent += $this->send($message, $failedRecipients);
         }
     } else {
         foreach ($to as $address => $name) {
             $message->setTo(array($address => $name));
             $sent += $this->send($message, $failedRecipients);
         }
     }
     $message->setTo($to);
     if (!empty($cc)) {
         $message->setCc($cc);
     }
     if (!empty($bcc)) {
         $message->setBcc($bcc);
     }
     return $sent;
 }
Ejemplo n.º 4
0
 /**
  * init the mailer into mail queue
  *
  * @param \Swift_Mime_Message $message  E-mail message
  * @param string              $from     The from value
  * @param mixed               $to       The to value
  * @param mixed               $cc       The cc value
  * @param mixed               $bcc      The bcc value
  * @param string              $replayto The replayto value
  * @param string              $subject  The subject value
  * @param array               $body     The body value
  * @param mixed               $sender   The sender value
  *
  * @access public
  * @return void
  * @author Etienne de Longeaux <*****@*****.**>
  */
 public function init(\Swift_Mime_Message &$message, $from, $to, $cc, $bcc, $replayto, $subject, $body, $sender)
 {
     if (is_string($cc)) {
         $cc_new = $this->container->get('sfynx.tool.regex_manager')->verifByRegularExpression($cc, 'mail', PREG_SPLIT_NO_EMPTY);
         if (is_array($cc_new) && count($cc_new) == 1 && count($cc_new[0]) >= 1) {
             $cc = $cc_new[0];
         } else {
             $cc = null;
         }
     }
     if (is_string($bcc)) {
         $bcc_new = $this->container->get('sfynx.tool.regex_manager')->verifByRegularExpression($bcc, 'mail', PREG_SPLIT_NO_EMPTY);
         if (is_array($bcc_new) && count($bcc_new) == 1 && count($bcc_new[0]) >= 1) {
             $bcc = $bcc_new[0];
         } else {
             $cc = null;
         }
     }
     try {
         $message->setTo($to)->setFrom($from)->setSender($sender)->setCc($cc)->setBcc($bcc)->setReplyTo($replayto)->setSubject($subject)->setBody($body, 'text/html');
     } catch (\Exception $e) {
         return false;
     }
 }