gpt4 book ai didi

python - 为什么我的来自 django 电子邮件的 html 链接不可点击?

转载 作者:太空狗 更新时间:2023-10-30 02:23:05 25 4
gpt4 key购买 nike

我通过 Django 发送了以下邮件

    subject, from_email, to = 'site Registration', 'support@site.com', self.second_email
text_content = 'Click on link to finish registration'
html_content = '<html><body><a href="site.com/accounts/user/' + self.slug +'">Click Here</a></body></html>'
msg = EmailMultiAlternatives(subject, text_content, from_email, [to])
msg.attach_alternative(html_content, "text/html")
msg.send()

当我访问电子邮件(google 和 yahoo 电子邮件)时,它们都以蓝色显示“单击此处”文本(我认为这意味着它被识别为链接),但是,该链接不可点击且不链接到站点.com/acc...我做错了什么?

谢谢!

最佳答案

您可能需要使其成为一个有效的 URL:(注意包含的方案)

<a href="http://site.com/accounts/user/' + self.slug +'">

关于python - 为什么我的来自 django 电子邮件的 html 链接不可点击?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6464737/

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