为什么我的图片不会出现在电子邮件签名中?

时间:2015-04-02 17:12:23

标签: html image email outlook signature

我一直在为客户制作一个非常简单的电子邮件签名,但对于我的生活却无法理解为什么最终的血腥图像不会显示出来。我已经检查了几十次。它位于网站的/ images /文件夹中,随时可以使用。但它不会出现!

我已经制作了一个html文件进入Outlook签名位。 img src是http://transitions-london.co.uk/images/Transsignature.jpg/。但它不会出现。真气!在这一点上,任何想法都会很快乐。谢谢!

    <html>
<head> </head>
<body>

<table border="0" style="margin-top:40px;margin-left:20px;margin-bottom:30px;width:95%;">
<tbody>
<tr>
<td width="400">
<h2>Sheila Heard</h2>
<h3>Managing Director</br>
 <a href=“http://transitions-london.co.uk”>Transitions London CIC</a>     </br>

tel 020 86424431/07866 25742      社会企业C.I.C.没有7609324

 <i>Quality, impartial careers guidance and jobsearch services. Also social enterprise pathways for corporates to support and hire experienced professionals with refugee backgrounds & to deliver on corporate diversity and CSR good practice.</i>

  <i>Candidates are mostly engineers, finance & administration and international development professionals. Refugees have full permission to work.  Contact us for responsible services.</i>

     

通过LinkedinTwitter (@TransitionsUK)Facebook

找到我们            

 <img src=“http://transitions-london.co.uk/images/Transsignature.jpg”>     </img>

 </td>
 </tr>
 </tbody>
 </table>


     </body>
  </html>

谢谢!

2 个答案:

答案 0 :(得分:1)

图片网址中有非标准报价。使用此:

<img src="http://transitions-london.co.uk/images/Transsignature.jpg" alt="" />

答案 1 :(得分:0)

图片不可用。即使我无法在网络浏览器中打开它。

还尝试使用单个元素:

 <img src=“http://transitions-london.co.uk/images/Transsignature.jpg”/>
相关问题