I’d like to include a footnote in my response template that informs the recipient of why they’re receiving the e-mail; e.g.
This e-mail is in response to a submission to website name here:
Sent by: {name}
From IP: {ip_address}
If you feel you’ve received this e-mail in error, please contact us at website name here.
Is there any way with freeform to record the form users IP and use it in a variable like {ip_address}?
Or, would it be possible to include a bit of php in the response template to display the users ip: e.g.
<?php
$_SERVER['REMOTE_ADDR']
?>
Thanks in advance.
