Send SMTP data
bool Core_Email::_send_data( )
bool
protected function _send_data($data)
{
if ( ! fwrite($this->_smtp_connect, $data . $this->newline))
{
$this->_set_error_message('lang:email_smtp_data_failure', $data);
return false;
}
return true;
}