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;
}
}