瀏覽代碼

修复邮件发送时Log类找不到的致命错误

一半 4 年之前
父節點
當前提交
76b31ced93
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      application/common/library/Email.php

+ 1 - 1
application/common/library/Email.php

@@ -62,7 +62,7 @@ class Email
         $secureArr = [0 => '', 1 => 'tls', 2 => 'ssl'];
         $secure = isset($secureArr[$this->options['mail_verify_type']]) ? $secureArr[$this->options['mail_verify_type']] : '';
 
-        $this->mail = new Mailer(new Log);
+        $this->mail = new Mailer();
         $this->mail->setServer($this->options['mail_smtp_host'], $this->options['mail_smtp_port'], $secure);
         $this->mail->setAuth($this->options['mail_from'], $this->options['mail_smtp_pass']);