我想添加"白色空间:nowrap"使用JavaMail API在我的电子邮件主题中的某些两个单词的CSS属性。
这是我的代码:
String str = "These <span style='white-space: nowrap'>Two words</span>";
mail.setSubject(str, "UTF-8");
但是当我在电子邮件客户端中查看时,主题已显示为文本,而不是HTML格式。
These <span style='white-space: nowrap'>Two words</span>
请让我知道可能是什么问题。
答案 0 :(得分:1)
主题中无法使用HTML。 您可以尝试硬空间,也称为非中断空间,U + 00A0。
SELECT name, address, mono FROM TransportSticker, CustomerTable, VendorTable WHERE (TransportSticker.whoseid = 'vendor' AND VendorTable.id = TransportSticker.vorcid) OR (TransportSticker.whoseid = 'customer' AND CustomerTable.id = TransportSticker.vorcid)