Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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;
    }
    }

    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.

Viewing 2 replies - 1 through 2 (of 2 total)