Hello,
I would like to ask how can I add actual date to my email's subject:
ex:
Subject: The form was submitted d/m/y(the date of submission).
Thanks,
Damian
I would like to ask how can I add actual date to my email's subject:
ex:
Subject: The form was submitted d/m/y(the date of submission).
Thanks,
Damian
Hi damiandab,
You can do this easily with a Dynamic Subject. Create a hidden field in your form and make the value the subject that you want and put the field name in the Dynamic Subject box in the Email Setup.
Bob
You can do this easily with a Dynamic Subject. Create a hidden field in your form and make the value the subject that you want and put the field name in the Dynamic Subject box in the Email Setup.
<input type='hidden' name='subject' value='".<?php echo "The form was submitted on".date('d/m/Y'); ?>' />
Not tested and may need debugging.Bob
This topic is locked and no more replies can be posted.