当前位置: 首页>>代码示例>>PHP>>正文


PHP PHPMailer::SetError方法代码示例

本文整理汇总了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);
 }
开发者ID:klr2003,项目名称:sourceread,代码行数:9,代码来源:SugarPHPMailer.php

示例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);
     }
 }
开发者ID:Calmacil,项目名称:ffdvh,代码行数:29,代码来源:jMailer.class.php

示例3: SetError

 public function SetError($msg)
 {
     parent::SetError($msg);
     $class = get_class($this);
     $GLOBALS["log"]->fatal("{$class} encountered an error: {$this->ErrorInfo}");
 }
开发者ID:jglaine,项目名称:sugar761-ent,代码行数:6,代码来源:PHPMailerProxy.php

示例4: SetError

 function SetError($msg)
 {
     global $modx;
     $modx->config['send_errormail'] = '0';
     $modx->logEvent(0, 3, $msg, 'phpmailer');
     return parent::SetError($msg);
 }
开发者ID:radist,项目名称:modx.evo.custom,代码行数:7,代码来源:modxmailer.class.inc.php

示例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);
 }
开发者ID:Rikisha,项目名称:proj,代码行数:10,代码来源:sender.php

示例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);
 }
开发者ID:butschster,项目名称:sugarcrm_dev,代码行数:10,代码来源:SugarPHPMailer.php


注:本文中的PHPMailer::SetError方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。