Index: messaging.module
===================================================================
--- messaging.module	(revision 21)
+++ messaging.module	(working copy)
@@ -860,6 +860,7 @@
     'subject'  => $message->subject,
     'body'     => $message->body,
     'headers'  => messaging_mail_headers($message, $params),
+    'attachment' => $message->attachment
   );  
   
   // Invoke hook_mail_alter() to allow all modules to alter the resulting e-mail.
Index: messaging_phpmailer/messaging_phpmailer.module
===================================================================
--- messaging_phpmailer/messaging_phpmailer.module	(revision 21)
+++ messaging_phpmailer/messaging_phpmailer.module	(working copy)
@@ -95,6 +95,13 @@
   // The subject has been already filtered by messaging module
   $mail->Subject = $subject;
   $mail->Body = str_replace("\r", '', $body);
+
+  if(!empty($message['attachment'])){
+  foreach($message['attachment'] as $filepath) {
+    $mail->AddAttachment($filepath);
+  }
+  }
+
   return $mail->Send();
 }
 
