I generate and send an email with text/html content. General structure:
<!DOCTYPE html>
<html>
<head>
<title>{title}</title>
<style type="text/css">
{% block stypes %}
{% endblock %}
</style>
</head>
<body>
{% block content %}
{% endblock %}
</body>
In my email box, I received properly generated the email (html/css works as expected).
But when I forward the message it seems that <styles>
tag is removed.
Is it possible to retain css styles on forwarding?