_addRecipientAndHeader() protected méthode

Helper function for adding a recipient and the corresponding header
protected _addRecipientAndHeader ( string $headerName, string $email, string $name )
$headerName string
$email string
$name string
 /**
  * Helper function for adding a recipient and the corresponding header
  *
  * @param string $headerName
  * @param string $email
  * @param string $name
  */
 protected function _addRecipientAndHeader($headerName, $email, $name)
 {
     $this->getLog()->addRecipient($headerName, $email, $this->_decodeBase64Header($name));
     parent::_addRecipientAndHeader($headerName, $email, $name);
 }