The following adds the message and human name that the sender entered into the mail form. If you print the $form_state variable you can see other things you might want to add $print.
jyg
Index: print_mail.inc
===================================================================
--- print_mail.inc (revision 467)
+++ print_mail.inc (working copy)
@@ -266,6 +266,9 @@
$pattern = '!<(img\s[^>]*?)>!is';
$print['content'] = preg_replace_callback($pattern, '_print_mail_encode_urls', $print['content']);
+ $print['message'] = $form_state['values']['txt_message'];
+ $print['from'] = $form_state['values']['fld_from_name'];
+
if ($print !== FALSE) {
$params = array();
$params['subject'] = $form_state['values']['fld_subject'];
Comments
Comment #1
jcnventuraSeems to work. If some more people want this, I might consider adding it to the module.
Comment #2
jcnventuraComment #3
jcnventuraI guess no one was interested.