Reply-to not being overridden
-
Not sure how to make this work:
I have a simple js contact form that I’ve created where a user can contact an author which is handled via wp_mail but routed through wpmandrill. This works great except for one thing, the reply-to in the headers is not overriding the wpmandrill settings. When I get the email, it’s showing the reply-to from the wpmandrill settings and not the user’s email adress that submitted the form.
Here’s what I have:
add_action( 'wp_ajax_contact_form', 'send_contact_form' ); function send_contact_form() { $user_id = (isset($_POST['user_id']) ? $_POST['user_id'] : 0); $notification = ['success' => false, 'msg' => '']; if($user_id <= 0) { $notification['msg'] = 'Invalid user id'; echo json_encode($notification); wp_die(); } $user = get_user_by('ID', $user_id); if(!$user) { $notification['msg'] = 'User not found!'; } $email = $user->user_email; $message = '<p>Name: '.htmlentities($_POST['firstName']).'</p>'; $message .= '<p>Last Name: '.htmlentities($_POST['lastName']).'</p>'; $message .= '<p>Message: '.htmlentities($_POST['message']).'</p>'; $headers = array( 'Reply-To' => htmlentities($_POST['email']) ); //send the email wp_mail( $email, 'Test Subject', $message, $headers ); $notification['msg'] = 'Email sent successfully!'; $notification['success'] = true; echo json_encode($notification); wp_die(); }
I verified the header does contain the user’s email when I do a var_export of the $header variable.
I saw the payload filter but I can’t find much on it and am not sure what to do with it. Any guidance?
- The topic ‘Reply-to not being overridden’ is closed to new replies.