如何使用python脚本添加超链接?

时间:2016-03-30 15:45:40

标签: python

我正在尝试添加一个超链接到我通过python发送邮件发送的电子邮件。我想在等等等等之后加上一个链接。提前致谢!

这是我到目前为止所拥有的:

code i already have

2 个答案:

答案 0 :(得分:1)

email = "test@gmail.com"
"this is my e-mail:{email}".format(
   email=email,
)

结果是

this is my e-mail:test@gmail.com
这是你想要的吗? 我需要更多细节描述

答案 1 :(得分:0)

您可以将str.format()用于此目的。

示例:

link = 'https://google.com'
mymail = 'Hello friend!\nCheck this out {}'.format(link)
print mymail

>>> Hello friend!
>>> Check this out https://google.com