Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #758145

    Hi ,

    Seems there is a problem to send email from the contact form.

    It can send thanks email to the customer, but no email sent to admin email address.

    Can you help me check what happened?

    Thanks

    #758149

    Hey river7527,

    Try an email that end’s with gmail or yahoo to make sure your hosting has configured your custom email address properly.

    If you still have an issue please refer to this link http://kriesi.at/documentation/enfold/my-contact-form-is-not-sending-emails/

    Best regards,
    Vinay

    #758642

    I add this to the “function.php” file, now it can send email to me, but both “thanks eamil” and “confimr email” are sent to me.

    function change_cf_from() {
        return " (Email address hidden if logged out) ";
    }
    add_filter('avf_form_from', 'change_cf_from', 10);

    I need the “thanks email” send to my custmer, how can we do that?

    THnaks a lot

    #761261

    Hey!

    Please add this filter as well.

    add_filter('avf_form_autoresponder_from', 'avf_form_autoresponder_from_mod', 10, 3);
    function avf_form_autoresponder_from_mod($from, $new_post, $form_params) {
        $from = $new_post['2_1'];
        return $from;
    }

    Cheers!
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.