Horde_Smtp::_processData PHP Method

_processData() protected method

Process the return from the DATA command.
See also: _send()
protected _processData ( array $recipients ) : array
$recipients array The list of message recipients.
return array See _send().
    protected function _processData($recipients)
    {
        $this->_getResponse(250, array('error' => 'reset'));
        return array_fill_keys($recipients, true);
    }