### Eclipse Workspace Patch 1.0
#P mimemail
Index: mimemail.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/mimemail/mimemail.module,v
retrieving revision 1.50
diff -u -r1.50 mimemail.module
--- mimemail.module	12 Aug 2010 11:06:18 -0000	1.50
+++ mimemail.module	15 Aug 2010 17:51:02 -0000
@@ -125,7 +125,7 @@
     }
   }
   $subject = mime_header_encode(trim(drupal_html_to_text($subject)));
-  $body = theme('mimemail_message', $body, $mailkey);
+  $body = theme(array('mimemail_message__'. $mailkey, 'mimemail_message'), $body, $mailkey);
   foreach (module_implements('mail_post_process') as $module) {
     $function = $module .'_mail_post_process';
     $function($body, $mailkey);
Index: theme/mimemail.theme.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/mimemail/theme/mimemail.theme.inc,v
retrieving revision 1.6
diff -u -r1.6 mimemail.theme.inc
--- theme/mimemail.theme.inc	12 Aug 2010 10:38:02 -0000	1.6
+++ theme/mimemail.theme.inc	15 Aug 2010 17:51:02 -0000
@@ -7,7 +7,7 @@
     'mimemail_message' => array(
       'arguments' => array('body' => NULL, 'mailkey' => NULL),
       'template' => 'mimemail-message',
-      'pattern' => 'mimemail__',
+      'pattern' => 'mimemail_message__',
       'file' => 'mimemail.theme.inc',
       'path' => $path,
     )
