Ashus.ashus.net

Full Version: How to insert separately styled HTML e-mail to heavily styled page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Use iframe like this!


Code:
<iframe id="unstyled-text" sandbox="allow-scripts allow-popups allow-same-origin" srcdoc="<?= htmlspecialchars('<head><base target="_blank"></head><body>' . $html . '</body>') ?>"></iframe>
<script>
    $(function(){
        // hack for IE and browsers without srcdoc support
        var $u = $('#unstyled-text');
        var $body = $u.contents().find('body');
        if ($body.html() == '')
            $body.parent().html($u.attr('srcdoc'));
    });
</script>