crlf and newline bugfix

这个提交包含在:
HB9HIL 2023-11-22 14:51:45 +01:00
父节点 27c8af1f9f
当前提交 61d4c15ec0
共有 3 个文件被更改,包括 6 次插入0 次删除

查看文件

@ -360,6 +360,8 @@ class Options extends CI_Controller {
'smtp_port' => $this->optionslib->get_option('smtpPort'),
'smtp_user' => $this->optionslib->get_option('smtpUsername'),
'smtp_pass' => $this->optionslib->get_option('smtpPassword'),
'crlf' => "\r\n",
'newline' => "\r\n"
);
$this->email->initialize($config);

查看文件

@ -174,6 +174,8 @@ class Oqrs extends CI_Controller {
'smtp_port' => $this->optionslib->get_option('smtpPort'),
'smtp_user' => $this->optionslib->get_option('smtpUsername'),
'smtp_pass' => $this->optionslib->get_option('smtpPassword'),
'crlf' => "\r\n",
'newline' => "\r\n"
);
$this->email->initialize($config);

查看文件

@ -718,6 +718,8 @@ class User extends CI_Controller {
'smtp_port' => $this->optionslib->get_option('smtpPort'),
'smtp_user' => $this->optionslib->get_option('smtpUsername'),
'smtp_pass' => $this->optionslib->get_option('smtpPassword'),
'crlf' => "\r\n",
'newline' => "\r\n"
);
$this->email->initialize($config);