当我在CRM系统中写一封电子邮件时,我使用了这段代码。它会显示覆盖在所选图像上的书写文本。
<center>
<img src="http://isposts.eybdashboards.com/txt2img/tip3.php?text=Hi ~Contact.FirstName~, hope you are well.
This is just a quick test.&xpos=210&ypos=160&fontsize=40&textrotate=3.0&imagefile=http://isposts.eybdashboards.com/txt2img/blankcard1.png & wwwidth=21" height="300" width="300" alt="Image to overlay words on" />
</center>我尝试过标准的html换行符和其他换行符,但它不会给我换行符。
必须有一种方法来做到这一点,但从我在搜索中发现的情况来看,这是行不通的。
这个图片的链接是我目前得到的(我不能在我的帖子中显示图片,因为我是新的)
发布于 2015-06-10 17:57:41
您可能需要使用转义换行符,如下所示:
使用Unix样式的行尾:
hope you are well.\nThis is just a quick test.或MS样式的行尾:
hope you are well.\r\nThis is just a quick test.https://stackoverflow.com/questions/30752946
复制相似问题