我需要以可呈现的格式以表格的形式向用户发送数据。我有代码可以做到但无法找到为什么它没有出现在Outlook桌面应用程序上。我如何处理它以确保它也适用于Outlook应用程序?
我已经尝试使用十六进制代码和黑灰色的颜色没有任何效果。
table1.get_html_string(attributes={”border-top”:”2px solid #000000"})
print(table1)
<table frame="box" rules="all" border-top="2px solid #000000">
<tr>
此表通过邮件发送时以表格格式打印,但跳过边框,仅通过Outlook桌面App.Works通过浏览器打开时精通gmail和outlook
border-top
在Outlook中运行得很好。你的CSS无效。试试这个:
<table style="border-top: 2px solid #000000;">
<tr>
<td> </td>
</tr>
</table>
祝好运。