Is it possible to send a rich html email receipt from the simple ecommerce? I don’t need anything fancy, I just want to put the logo at the top. What I receive is plain text with html code not rendered.
I set the Default Mail Format to HTML in the Email Configuration, but no luck.
The code I’m trying to use is the following:
<html lang="en">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>IASA Receipt</title>
</head>
<body>
http://.../logo.jpg
Dear {first_name} {last_name},
.......
</body>
</html>Mirko