• I don’t see where to change the email address for the contact form on the homepage. It doesn’t go to the administrator email.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Go to Setting > General > E-mail Address
    Try by changing this email.

    Thanks

    Thread Starter webdesignbyfaith

    (@webdesignbyfaith)

    that doesn’t work for me. I’ve changed it to 3 different emails that I have and I still don’t get the email.

    Which plugin you are using for contact? Would you please provide the link of your site?
    Thanks

    Thread Starter webdesignbyfaith

    (@webdesignbyfaith)

    it actually doesn’t use a plugin for it uses this which is what was found the in the free start point template in the home-contact.php page.
    The site isn’t live yet, it is blocked by a maintenance page.

    //If there is no error, send the email
    if (!isset($hasError)) {
    $emailTo = get_option(‘tz_email’);
    if (!isset($emailTo) || ($emailTo == ”)) {
    $emailTo = get_option(‘admin_email’);
    }
    $subject = ‘[Wordpress] From ‘ . $name;
    $body = “Name: $name \n\nEmail: $email \n\nComments: $comments”;
    $headers = ‘From: ‘ . $name . ‘ <‘ . $emailTo . ‘>’ . “\r\n” . ‘Reply-To: ‘ . $email;
    mail($emailTo, $subject, $body, $headers);
    $emailSent = true;
    }
    }

    I will check this and give you the exact solution.
    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘contact form on homepage’ is closed to new replies.