Can I add another $message to this code so that I can have two different email noticification? Would I have to add a name to $subject?


// send an email notification to the visitor
$subject = $title;
$message = file_get_contents("../content/email_messages/promotion.txt");
eval('$message = stripSlashes("'.addSlashes($message).'");');
send_email($email, $name, $setting_webmaster_email, $setting_site_name, $setting_webmaster_email, $subject, $message, 0);