Is it possible to wrap a value in HTML like the following example?
$email_message = ('somehtml', $emailtext, 'somemorehtml');
So that when it is run you get:
<html>
<head>
<style>body {color:#eee;}</style>
</head>
<body>
<p>Hello and welcome to our website</p>
</body>
</html>
?