2013-02-22 30 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 

如何讓用戶在郵件正文中插入圖片?

回答

相關問題