gpt4 book ai didi

php - Codeigniter achor 在电子邮件收件箱中生成狡猾的链接..可能是什么问题?

转载 作者:行者123 更新时间:2023-11-29 06:19:30 26 4
gpt4 key购买 nike

我的申请通过电子邮件发送正常,但我收到的电子邮件显示不正确。它没有文本和简单的“单击此处激活”链接。它显示的是:

Hi user1, please click the following link to activate your account <a
href="http://mysite.com/activation/fzyZuyxVAzZS2koVg5UFjfVjlcLNcrzp">ssss</a>

这是我的模型中的代码,当用户请求激活电子邮件时,该代码会向用户发送电子邮件。

   $this->load->library('email');
$this->email->from('myemaill@gmail.com', 'my site');
$this->email->to($result[0]->email);
$this->email->subject('my site - Activate your account');
$this->email->message('Hi ' . $result[0]->first_name . ', please click the following link to activate your account ' . anchor('http://mysite.com/activation/' . $new_activation_code, 'click here to activate'));
$this->email->send();

此外,邮件总是会出现在我的垃圾邮件文件夹中。

最佳答案

目前电子邮件格式为纯文本,您需要通过电子邮件库的此选项将其转换为 HTML:

$config['mailtype'] = 'html';
$this->email->initialize($config);

See Docs for more info

关于php - Codeigniter achor 在电子邮件收件箱中生成狡猾的链接..可能是什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4574074/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com