PHP displaying html email in a html page

前端 未结 4 661
误落风尘
误落风尘 2021-01-12 11:26

I\'m building an PHP email mailbox script.

How would I make html emails display cleanly as they do in gmail/hotmail.

If I just echo it out it affects the who

4条回答
  •  醉酒成梦
    2021-01-12 12:19

    As Marc B stated, I believe an IFrame would be your best bet... but please realize that if you just dump any email HTML code you risk exposing yourself to viruses, Trojans, and malicious HTML/JavaScript code - Your opening Pandora's box on your computer unless you find a good way to sandbox/strip that HTML.

    Here's a simple Regex to clean JavaScript at least :

    "(?s)|)"
    

提交回复
热议问题