2013-02-22 45 views
0

对于用户界面,我使用TinyMCE编辑器和邮件功能,我使用PHP邮件程序API。我想用PHP编写电子邮件编辑器。如何使图像发送选项的电子邮件作曲家

问题是: 图像可以插入到文本编辑器中,但它们不会进入邮件正文。在文本编辑器生成 源代码是:

<img src="http://www.google.co.in/images/icons/product/chrome-48.png" alt="" width="48" height="48" /> //code generated in editor before sending 

但图片未在邮件主体插入。 我已经显示了正文消息的php源代码。 是:

<img src="\&quot;http://www.google.co.in/images/icons/product/chrome-48.png\&quot;" alt="\&quot;\&quot;" width="\&quot;48\&quot;" height="\&quot;48\&quot;">  //code generated in php while sending 

如何让用户在邮件正文中插入图片?

回答

相关问题