Is there a possibility to add the submit date and time in the email template?
At the end of the mail there is the sender's ip. But I would also like to see exactly when the form was sent.
At the end of the mail there is the sender's ip. But I would also like to see exactly when the form was sent.
Hi Bartelli,
The date and time of the email will tell you that.
If you want it in the email as well then you can use the php date() function to add it.
Bob
The date and time of the email will tell you that.
If you want it in the email as well then you can use the php date() function to add it.
Bob
Hi Bartelli,
As Bob said, at the end of the template, write this line :
<?php echo date("Y m dd"); ?>
Regarding the parameters string, you can google date() and you will get all info!
Cheers
Max
As Bob said, at the end of the template, write this line :
<?php echo date("Y m dd"); ?>
Regarding the parameters string, you can google date() and you will get all info!
Cheers
Max
This topic is locked and no more replies can be posted.