In order to send HTML mails, we need to set a proper Content-Type. This patch introduces a new parameter format to control this header.
In addition, I added a parameter for Reply-To. This especially useful in order to directly respond to form emails (e.g. reply_to: "{{ form.values.youremail }}")
In order to send HTML mails, we need to set a proper
Content-Type
. This patch introduces a new parameterformat
to control this header.In addition, I added a parameter for
Reply-To
. This especially useful in order to directly respond to form emails (e.g.reply_to: "{{ form.values.youremail }}"
)