Hello,
I hope that we can continue in English since we don't have a German-speaking support staff member at the moment.
There is a way to achieve what you want.
You have to create an additional field in your form which you fill in with current date and time and then put as subject the following:
Here are instructions on how to fill in the field with current date and time.
Please go to the Advanced properties of that field for filling in the date.
Then in the Initscript section set Type to Custom and check the "Form Entry" checkbox.
In the code area below put the following code:
function ff_datefieldname_init(element, condition)
{
setInterval(caltime, 500);
} // ff_datefieldname_init
function caltime() {
var date = new Date();
var year = date.getFullYear();
var month = date.getMonth() + 1;
var day = date.getDate();
var hours = date.getHours();
var minutes = date.getMinutes();
var seconds = date.getSeconds();
ff_getElementByName("datefieldname").value = year + "-" + month + "-" + day + " " + hours + ":" + minutes + ":" + seconds;
}
NOTE: In order for this to work on your form please replace bothe instances of datefieldname with the Name of that fate field.
Also, submission time might be a bit late since it takes Begin Submit time and not End Submit.
Another way to achieve what you want, which might be better in my opinion if you don't have a custom email template is to do similar as explained here
crosstec.org/en/support/online-documenta...-name-and-email.html
. The difference is that you would set as subject something like this:
Let me know whether this solution is working for you.
Regards,
Mihaela