python-mailto创建电子邮件并将URL显示为链接文本

时间:2014-03-31 23:57:41

标签: python mailto python-webbrowser

我目前有

import webbrowser
subject = urllib.quote('Some subject')
body = urllib.quote('here is a link: https://www.google.com')
cmd = u'mailto:?subject={}&body={}'.format(subject, body)
webbrowser.open(cmd)

这将创建一个文本

的电子邮件

'这是一个链接:https://www.google.com'

我想要的是显示链接到该网址的文字。

'这是一个链接:link_text'

基本上我如何使用a href来实现mailto的效果?

0 个答案:

没有答案