Index: simplenews.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/simplenews/simplenews.module,v
retrieving revision 1.214
diff -u -p -r1.214 simplenews.module
--- simplenews.module	30 Aug 2009 12:49:50 -0000	1.214
+++ simplenews.module	18 Sep 2009 19:14:38 -0000
@@ -1681,10 +1681,13 @@ function simplenews_mail_mail($nid, $vid
       // If mimemail module is installed ALL emails are send via this module.
       // drupal_mail() builds the content of the email but does NOT send.
       $message = drupal_mail('simplenews', $key, $subscription->mail, $subscription->language, $params, $params['from']['formatted'], FALSE);
-      $plain = $message['params']['context']['node']->simplenews['s_format'] == 'plain';
+      $plain = NULL; // allows user consideration
+      if($message['params']['context']['node']->simplenews['s_format']=='plain') {
+        $plain = TRUE;
+      }
       $message['result'] = mimemail(
         $message['from'],
-        $message['to'],
+	isset($message['params']['context']['account']) ? $message['params']['context']['account'] : $message['to'],
         $message['subject'],
         $message['body'],
         $plain,
