Index: mimemail.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/mimemail/mimemail.module,v
retrieving revision 1.31.2.3
diff -u -r1.31.2.3 mimemail.module
--- mimemail.module	14 Apr 2009 23:08:59 -0000	1.31.2.3
+++ mimemail.module	7 Sep 2010 16:59:48 -0000
@@ -271,7 +271,8 @@
     }
     $headers = isset($message['headers']) ? $message['headers'] : array();
     $mailkey = isset($message['mailkey']) ? $message['mailkey'] : '';
-    return mimemail($from, $to, $subject, $body, NULL, $headers, NULL, array(), $mailkey);
+    $attachments = isset($message['attachments']) ? $message['attachments'] : array();
+    return mimemail($from, $to, $subject, $body, NULL, $headers, NULL, $attachments, $mailkey);
   }
 }
 
