gpt4 book ai didi

c# - 无法在电子邮件模板中正确显示字体和图像

转载 作者:太空宇宙 更新时间:2023-11-04 07:45:00 29 4
gpt4 key购买 nike

我将电子邮件模板用作单页 html,其中嵌入了样式 (css),我可以在 html 页面上正确显示所有样式,包括字体和图像。但是,当我在我的 C# 应用程序(Windows 服务的测试版本)中使用此模板发送电子邮件时,字体和图像样式无法应用于 Outlook 消息。到目前为止我尝试做的事情:

  • 将字体文件 (ttf) 添加到示例中我的电子邮件模板的同一目录(它与 html 文件位于同一目录)。

  • 嵌入图片(base64)到html文件如下图:

  • 尝试使用带有 url 的字体,如下所示:

    https://fonts.googleapis.com/css?family=Source+Sans+Pro' rel='stylesheet' type='text/css'>

但是它们都没有任何意义,并且图像不会显示在此模板发送的电子邮件中。除此之外,字体类型与 html 文件 (SourceSansPro) 上的字体类型不同。

有没有办法将字体嵌入到 html 文件中并在此模板创建的 outlook 消息上正确显示字体和图像???请注意,我使用 *.txt 文件作为模板,但其中的代码完全是 html 并且可以正常显示......

最佳答案

尝试在电子邮件模板中为自定义字体和图像插入此代码:

<style type="text/css">
@media screen {
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 400;
src: local('Lato Regular'), local('Lato-Regular'), url(https://fonts.gstatic.com/s/lato/v11/qIIYRU-oROkIk8vfvxw6QvesZW2xOQ-xsNqO47m55DA.woff) format('woff');
}

...

body {
font-family: "Lato", "Lucida Grande", "Lucida Sans Unicode", Tahoma, Sans-Serif;
}
</style>

<html>
<head>
</head>
<body>
<img src="data:image/jpg;base64,/*base64-data-string here*/" />
</body>
</html>

关于c# - 无法在电子邮件模板中正确显示字体和图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48223256/

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