gpt4 book ai didi

Python 中 HTML 电子邮件中的 Python 变量

转载 作者:太空狗 更新时间:2023-10-29 21:12:30 26 4
gpt4 key购买 nike

如何将变量插入到我用 python 发送的 HTML 电子邮件中?我要发送的变量是 code。以下是我目前所拥有的。

text = "We Says Thanks!"
html = """\
<html>
<head></head>
<body>
<p>Thank you for being a loyal customer.<br>
Here is your unique code to unlock exclusive content:<br>
<br><br><h1><% print code %></h1><br>
<img src="http://example.com/footer.jpg">
</p>
</body>
</html>
"""

最佳答案

使用"formatstring".format :

code = "We Says Thanks!"
html = """\
<html>
<head></head>
<body>
<p>Thank you for being a loyal customer.<br>
Here is your unique code to unlock exclusive content:<br>
<br><br><h1>{code}</h1><br>
<img src="http://example.com/footer.jpg">
</p>
</body>
</html>
""".format(code=code)

如果你发现自己代入了大量的变量,你可以使用

.format(**locals())

关于Python 中 HTML 电子邮件中的 Python 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13208212/

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