如何将变量插入到我使用 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://domain.com/footer.jpg">
</p>
</body>
</html>
"""