Hi,
// EMAIL FUNCTION
function send_mail($recipient, $subject, $email, $content) {
if (!$mu) {
mail($recipient, $subject, $content, "From: $email\n");
}
}
This uses an external file as a template for the autoresponder allowing variables to be read from the template file...