django中的超链接文本发送到电子邮件[重复]

Posted

技术标签:

【中文标题】django中的超链接文本发送到电子邮件[重复]【英文标题】:Hyperlinking text in django which sends to an email [duplicate] 【发布时间】:2013-07-29 16:29:19 【问题描述】:

我想将“点击此处”设为一个超链接,当点击该链接时,例如会将人们发送到 127.0.0.1。

 confirm_links = 'To confirm this order <a href= "127.0.0.1://confirmorder/" > click here </a> '

我认为这通常可以工作,但我通过电子邮件发送代码。

【问题讨论】:

检查上面的链接 - 基本上,你可以按照你想要的方式设计模板.. 【参考方案1】:
from django.core.mail import send_mail

send_mail('Subject here', 'Here is the message.', 'from@example.com',
    ['to@example.com'], fail_silently=False)

你想要这样的东西吗?

<a href="mailto:someone@example.com?Subject=Hello%20again" target="_top">

【讨论】:

docs.djangoproject.com/en/dev/topics/email 我已经实现了这段代码。它已经向用户发送了一封电子邮件。我试图弄清楚如何在通过电子邮件发送文本时将其激活为超链接。 错误。我希望让文本的正文成为超链接。不是标题

以上是关于django中的超链接文本发送到电子邮件[重复]的主要内容,如果未能解决你的问题,请参考以下文章

gmail中的超链接不可点击

如何将列中的超链接插入Outlook电子邮件正文

将 django-rest-framework 中的超链接添加到 ModelViewSet

【急】【狗不答问题】点击网页中的超链接按钮没用是怎么回事? 赏金:200

密码恢复不发送电子邮件。

Django:从管理模型到文档的超链接