Index: notifications.cron.inc
===================================================================
--- notifications.cron.inc	(revision 21)
+++ notifications.cron.inc	(working copy)
@@ -426,7 +426,15 @@
   // Get subject out of text and build the message array
   $subject = $text['subject'];
   unset($text['subject']);
-  return array('subject' => $subject, 'body' => $text);
+
+  // Find any attachments to node
+  $attach_result = db_query("SELECT * FROM {upload} WHERE nid = %d", $event->params['nid']);
+  while($attach_row = db_fetch_object($attach_result)) {
+    $attach_file = db_fetch_object(db_query("SELECT * FROM {files} WHERE fid = %d", $attach_row->fid));
+    $attach_array[] = $attach_file->filepath;
+  }
+
+  return array('subject' => $subject, 'body' => $text, 'attachment' => $attach_array);
 }
 
 /**** Retrieving and replacing text parts, interfacing with tokens and messaging module ****/
