Search code examples
phpyii2yii2-basic-appeml

Yii2. How to render .eml in a view?


I have a string with an .eml message. How to render this email on the page of my site in some kind of frame?

Is there any composer extension, that could render .eml content as a regular mail app.


Solution

  • I used this extension

    And snippet like this:

    $parser = new PhpMimeMailParser\Parser();
    $parser->setText($message);
    
    $html = $parser->getMessageBody('html');
    
    echo $html;
    

    $html is wrapped in my view into proper <div>'s.