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

jcnventura’s picture

Status: Active » Postponed (maintainer needs more info)

Seems to work. If some more people want this, I might consider adding it to the module.

jcnventura’s picture

Status: Postponed (maintainer needs more info) » Postponed
jcnventura’s picture

Status: Postponed » Closed (won't fix)

I guess no one was interested.