Tagged: CONTACT FORM, reply-to
When I get email from contact form, and hit ‘Reply’,
The reply-to address is the website email (admin) not the sender’s (from email field).
I tried the next code – but it’s not working.
add_filter('avf_form_from', 'avia_change_from', 10, 3);
function avia_change_from($from,$new_post,$params){
$from = $new_post['e-mail_1'];
return $from;
}
attached URL of contact form page
Any answers?
Hi,
We are sorry for the delay. Please refrain from bumping or replying to your own thread because it gets pushed back to the end of the queue and moderators won’t be able to provide a response immediately. Please be patient while we go through the rest of the queue. Thank you for your understanding.
Did you install a SMTP plugin? Please review this thread. https://kriesi.at/support/topic/contact-form-emails-no-longer-working/
Best regards,
Ismael
No. I didn’t install any SMTP plugin
Hi,
Please try this in the functions.php file:
add_filter('avf_form_from', 'avf_form_from_mod', 10, 3);
function avf_form_from_mod($from, $new_post, $form_params) {
$from = urldecode($new_post['2_1']);
return $from;
}
If it’s not working, you just have to manually copy the email address info from the email message after hitting the reply button.
Best regards,
Ismael
Not working.
Disappointing…
:-(
Hi,
you can try Contact Form 7 plugin, because it has much more options for you.
Best regards,
Andy