0

我为outlook设计了一个html签名,当我发送电子邮件和在outlook中接收电子邮件时,它在outlook中看起来很完美——但是在其他电子邮件客户端中,签名中使用的图像被放大了。我使用的其他电子邮件客户端是 Mozilla Thunderbird 和我使用的 A webmail (mail.com)。我做了很多研究,发现一篇文章建议在我所做的图像上将 res 更改为 96dpi。

我无法以新用户的身份发布图像,但是您可以在以下链接中看到它们:
在 Outlook 2013 中发送和接收的电子邮件:http: //champ.website-admin.net/files/2015/01/e- mailexample.jpg
在 Thunderbird 中收到的电子邮件:http: //champ.website-admin.net/files/2015/01/e-mailexample2.jpg

这是我的代码:

<table width="600" height="140" border="0" cellspacing="0" cellpadding="0" style="font-family:'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', 'DejaVu Sans', Verdana, sans-serif; color:#d3a25b;">
<tbody>
<tr>
  <td style="background-color:#2f2f2f; padding-left:10px; width:400px; height: 140px; line-height:1.2em;">
  <font style="font-size:16px;"><b>Emma Woolward</b></font><br>
  <font style="font-size:11px;"><b><a href="mailto:operations@champresources.com.au">operations@champresources.com.au</a></b><br>
      <b><strong>1300 GO CHAMP</strong></b><br>
      <b>P: 1300 462 426</b><br>
      <b><a href="www.champresources.com.au">www.champresources.com.au</a></b><br></font>
      <font style="color:#2f2f2f; font-size:1px;"><b>.</b><br></font>
      <b><a href="https://www.facebook.com/champresources?fref=ts"><img src="http://champ.website-admin.net/files/2015/01/facebook.jpg" style="float:left;"></a><font style="color:#282828">...<img src="http://champ.website-admin.net/files/2015/01/zeroharm.jpg" style="float:left; margin-left:5px;"></b><br></font></td>
  <td style="width:300px; height: 140px; padding-left:0px;"><img src="http://champ.website-admin.net/files/2015/01/champemailsig.jpg" /></td>
</tr>
</tbody>
</table>
4

1 回答 1

0

我认为这就像将宽度和高度添加到标签而不是 td 一样简单。

例如:

<img width="300" src="http://champ.website-admin.net/files/2015/01/champemailsig.jpg" />

于 2015-03-17T00:01:34.593 回答