为什么我的图像不能在电子邮件签名中显示?

问题描述:

我一直在为一个客户做一个非常简单的电子邮件签名,并且对于我的生活无法弄清楚为什么最终的血腥图像不会显示出来。我检查了几十次。它位于网站的/ 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> 

电话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> 

谢谢!

你必须在图像URL非标准报价。使用这个:

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

我以前试过。但由于某种原因,它不起作用。现在我添加了“alt =”“'它似乎在工作!很奇怪。非常感谢! – 2015-04-03 09:13:25

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

也尝试使用单个元素:

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

绝对有。 – 2015-04-03 09:13:44