I'm sending a mail to a user through a form. I pasted a part of the template below. The template is a part of a Forms for editors-module.
I figured out you can control the topic, by using a hidden field like this:
<input type="hidden" name="ForgotPasswordMailSubject" value="Topic goes here" />
Here is the template I use
<form action="@formAction" class="@formCssClass" enctype="multipart/form-data" id="@formId" method="post" name="@formId" onsubmit="@formOnSubmit"> @formSystemFields <div class="row"> <div class="col-md-9 col-md-pull-3"> <div class="form-group"> <label>Foreningens navn</label> <input class="form-control" id="Foreningensnavn" name="Foreningensnavn" placeholder="" required="" type="text"> </div> ...
I would like to use whatever the user types in the "Foreningsnavn" field, to be shown in the topic of the mail, is this possible?