我正在发送一封 HTML 电子邮件,其中包含带有 cfmail 的图像。总之,代码如下所示:
<cfmail from="me@email.com" to="user@email.com" subject="My Subject" type="html">
<img src="http://www.mywebsite.com/images/my_image.jpg" style="height:120px;" alt="My Image" />
</cfmail>
如您所见,我将 CSS 高度属性设置为 120px。在浏览器中,这会将图像缩放到 120 像素高并自动确定成比例的宽度。在电子邮件中,至少在 Outlook 2007 中,它什么也不做。图像以其原始高度和宽度出现。
我是从 ColdFusion9 盒子发送的,所以我尝试使用 cfimage 没有任何运气,但很可能我只是做错了什么。有什么方法可以在电子邮件中即时调整此图像的大小?谢谢!