本文整理汇总了PHP中PHPMailer::SetError方法的典型用法代码示例。如果您正苦于以下问题:PHP PHPMailer::SetError方法的具体用法?PHP PHPMailer::SetError怎么用?PHP PHPMailer::SetError使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PHPMailer
的用法示例。
在下文中一共展示了PHPMailer::SetError方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: SetError
/**
* overloads class.phpmailer's SetError() method so that we can log errors in sugarcrm.log
*
*/
function SetError($msg)
{
$GLOBALS['log']->fatal("SugarPHPMailer encountered an error: {$msg}");
parent::SetError($msg);
}
示例2: SetError
protected function SetError($msg)
{
if (preg_match("/^([^#]*)#([^#]+)#(.*)\$/", $msg, $m)) {
$arg = null;
if ($m[1] != '') {
$arg = $m[1];
}
if ($m[3] != '') {
$arg = $m[3];
}
if (strpos($m[2], 'WARNING:') !== false) {
$locale = 'jelix~errors.mail.' . substr($m[2], 8);
if ($arg !== null) {
parent::SetError(jLocale::get($locale, $arg, $this->lang, $this->CharSet));
} else {
parent::SetError(jLocale::get($locale, array(), $this->lang, $this->CharSet));
}
return;
}
$locale = 'jelix~errors.mail.' . $m[2];
if ($arg !== null) {
throw new jException($locale, $arg, 1, $this->lang, $this->CharSet);
} else {
throw new jException($locale, array(), 1, $this->lang, $this->CharSet);
}
} else {
throw new Exception($msg);
}
}
示例3: SetError
public function SetError($msg)
{
parent::SetError($msg);
$class = get_class($this);
$GLOBALS["log"]->fatal("{$class} encountered an error: {$this->ErrorInfo}");
}
示例4: SetError
function SetError($msg)
{
global $modx;
$modx->config['send_errormail'] = '0';
$modx->logEvent(0, 3, $msg, 'phpmailer');
return parent::SetError($msg);
}
示例5: setError
/**
* Adds the error message to the error container.
* @access protected
* @return void
*/
public function setError($msg)
{
$this->_errors[] = JText::_($msg);
return parent::SetError($msg);
}
示例6: SetError
/**
* overloads class.phpmailer's SetError() method so that we can log errors in sugarcrm.log
*
* @param string $msg
*/
function SetError($msg)
{
Log::fatal("SugarPHPMailer encountered an error: {$msg}");
parent::SetError($msg);
}