{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %}
{% block toolbar %}
{% if collector.messagecount %}
{% set icon %}
{% endset %}
{% set text %}
No message sent.
{% else %} {% for i, message in collector.messages %}{{ header }}
{% endfor %}
{%- if messagePart.charset is defined and message.charset %}
{{- message.body|e('html', message.charset)|convert_encoding('UTF-8', message.charset) }}
{%- else %}
{{- message.body|e('html') }}
{%- endif -%}
{% for messagePart in message.children if messagePart.contentType == 'text/plain' or messagePart.contentType == 'text/html' %}
{%- if messagePart.charset %}
{{- messagePart.body|e('html', messagePart.charset)|convert_encoding('UTF-8', messagePart.charset) }}
{%- else %}
{{- messagePart.body|e('html') }}
{%- endif -%}
{% endfor %}
{% endfor %}
{% endif %}
{% endblock %}