--- modules/contact/contact.module Tue Jan 29 09:24:08 2008 +++ modules/contact/contact.module Tue Jan 29 09:23:33 2008 @@ -501,23 +501,23 @@ /** * Process the site-wide contact page form submission. */ function contact_mail_page_submit($form_id, $form_values) { // E-mail address of the sender: as the form field is a text field, // all instances of \r and \n have been automatically stripped from it. $from = $form_values['mail']; // Compose the body: - $message[] = t("!name sent a message using the contact form at !form.", array('!name' => $form_values['name'], '!form' => url($_GET['q'], NULL, NULL, TRUE))); + $message[] = t("!name sent a message using the contact form at !form.", array('!name' => $form_values['name'], '!form' => url($_GET['q'], NULL, NULL, TRUE), '!email' => $form_values['mail'])); $message[] = $form_values['message']; // Tidy up the body: foreach ($message as $key => $value) { $message[$key] = wordwrap($value); } // Load the category information: $contact = db_fetch_object(db_query("SELECT * FROM {contact} WHERE cid = %d", $form_values['cid'])); // Format the category: