@clarkwinkelmann Maybe it could work together with for/pretty-mail reusing its default template and its variables without putting much effort in it.
Maybe lame question but I'm facing an issue with sending HTML messages. I made a template with MJML exported to HTML copied and clicked send... I get the popup message 'High 5' but I don't receive it. Turned on debug but I don't see anything that could interrupt it. Plain text is working without issues. So ... where do I start digging? Or HTML messages are not supported?
I guess HTML messages are not supported. Anyway leaving simple not working example - actually base from Pretty Mail just without vars:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
body {
font-family: 'Open Sans', sans-serif;
background: white;
color: #426799;
margin: 0;
padding: 0;
}
.content {
box-sizing: border-box;
width: 100%;
max-width: 500px;
margin: 0 auto;
padding: 10px 20px;
}
.header {
border-bottom: 1px solid #e8ecf3;
}
.header a {
color: #333;
text-decoration: none;
}
.footer {
background: #e8ecf3;
}
</style>
</head>
<body>
<div class="header">
<div class="content">
[deleted]
</div>
</div>
<div class="content">
Some content
</div>
<div class="footer">
<div class="content">
<p>Sent from [deleted] using FoF Pretty Mail</p>
</div>
</div>
</body>
</html>