Hi, i need your help please :
How to change contact form so email reply is to person filling the form ?
i have in my php: contact.php
<input type="hidden" name="replyto" value="template-contactform-email">
but it doesnt work.
in my form.php
/-------------------------------------------------
Receiver's Email
---------------------------------------------------/
$toemails = array();
$toemails[] = array(
'email' => 'contacto@goldenslake.com', // Your Email Address
'name' => 'Sebastian Maccayone' // Your Name
);
/-------------------------------------------------
Sender's Email
---------------------------------------------------/
$fromemail = array(
'email' => 'contacto@goldenslake.com', // Company's Email Address (preferably currently used Domain Name)
'name' => 'Goldens Lake' // Company Name
);