How to display an HTML email for preview on a webpage?

Posted by Andrew on Stack Overflow See other posts from Stack Overflow or by Andrew
Published on 2010-03-18T21:55:57Z Indexed on 2010/03/18 22:01 UTC
Read the original article Hit count: 339

Filed under:
|
|

I am trying to display a "preview" of an HTML email. I have the HTML in my database and now I need to render it in an iframe, or popup window or something. I am trying to inject the html into a div tag on the page, but it won't display anything. Here is the problem I am running into (I have nested HTML tags):

<html>
    <body>
        <h1>My page</h1>
        <div id="email-body">
            <html>
                <body>
                    <p>email</p>
                </body>
            </html>
        </div>
    </body>
</html>

© Stack Overflow or respective owner

Related posts about php

Related posts about html