cmdRcpt() protected method

This method must be called once for each recipient of the mail including cc and bcc recipients. The RCPT TO commands control where the mail is actually sent. It does not affect the headers of the email. The recipient mail address $email may be enclosed in angle brackets.
protected cmdRcpt ( string $email )
$email string
Esempio n. 1
0
 /**
  * Sends the 'RCTP TO' to the server with the address $email.
  *
  * This method must be called once for each recipient of the mail
  * including cc and bcc recipients. The RCPT TO commands control
  * where the mail is actually sent. It does not affect the headers
  * of the email.
  *
  * The recipient mail address $email may be enclosed in angle brackets.
  *
  * @throws ezcMailTransportSmtpException
  *         if there is no valid connection
  *         or if the RCPT TO command failed
  * @param string $email
  */
 public function cmdRcpt($email)
 {
     parent::cmdRcpt($email);
 }