Spool mail to the mail server
bool Core_Email::_spool_email( )
bool
protected function _spool_email()
{
$this->_unwrap_specials();
$method = '_send_with_'.$this->_get_protocol();
if ( ! $this->$method())
{
$this->_set_error_message('lang:email_send_failure_'.($this->_get_protocol() === 'mail' ? 'phpmail' : $this->_get_protocol()));
return false;
}
$this->_set_error_message('lang:email_sent', $this->_get_protocol());
return true;
}