Zend_Mail::clearReplyTo PHP Method

clearReplyTo() public method

Clears the current Reply-To address from the message
public clearReplyTo ( ) : Zend_Mail
return Zend_Mail Provides fluent interface
    public function clearReplyTo()
    {
        $this->_replyTo = null;
        $this->clearHeader('Reply-To');
        return $this;
    }

Usage Example

Example #1
0
 public function setReplyTo($email, $name = null)
 {
     parent::clearReplyTo();
     return parent::setReplyTo($email, $name);
 }
All Usage Examples Of Zend_Mail::clearReplyTo