问题描述
我创建了一个包含一些CSS的HTML签名。我大多使用表格进行布局。 Outlook似乎没有接受CSS。我不知道Outlook对CSS的支持非常有限。可以为以下
情况提供一些解决方案请:
I have created an HTML signature that contains some CSS. I have mostly used tables for layout. The CSS does not appear to be accepted by Outlook. I undertsnd that Outlook's support for CSS is very limited. Can somone provide some solutions for the following situations please:
- 居中范围(包含文字)在表格单元格内。
- 删除(向右)图像后的额外间距。
- 在表格单元格中居中图像(带有链接标记)。
- 表格单元格中的垂直居中图像
- 添加字体颜色,大小和希望字体系列。
提前感谢您的回答。
推荐答案
我建议您在mailbody中创建预期结果,然后输出其HTML主体然后转到%AppData%\ MicroSoft \Signatures,替换签名的htm。
I suggest you create your expected result in mailbody and then output its HTML body and then go to %AppData%\Microsoft\Signatures, replace the htm of your signature.
您可以使用以下代码输出预期的签名。
You could use the following code to output your expected signature.
Dim fso As Object
Set fso = CreateObject("Scripting.FileSystemObject")
Dim oFile As Object
Set oFile = fso.CreateTextFile("D:\htmlbody.txt")
oFile.WriteLine mymail.HTMLBody
oFile.Close
Set fso = Nothing
Set oFile = Nothing
End If
问候,
Celeste
这篇关于HTML电子邮件签名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!