我正在尝试使用cfsavecontent
发送一个 html 页面(使用 CSS 格式)。但是,当我通过 发送变量时cfmail
,一切都很好,除了图像。
<cfsavecontent variable="YourImg">
<table class="table_css">
<tr>
<td>
<p> your image is this:</p>
<img src="/imgs/image.jpg">
</td>
</tr>
</table>
</cfsavecontent>
<cfmail from="email@hotmail.com" to="email@gmail.com" subject="test email" type="html">
test:
<br /><br /><br />
#YourImg#
<br /><br /><br />
</cfmail>
这向我显示了使用 CSS 格式化的 HTML 表格,但图像看起来好像丢失了。谁能解释为什么?