? phpmailer
? smtp.replyto.patch
Index: smtp.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/smtp/smtp.module,v
retrieving revision 1.17.2.8
diff -u -p -r1.17.2.8 smtp.module
--- smtp.module	23 Sep 2008 22:03:01 -0000	1.17.2.8
+++ smtp.module	10 Nov 2009 01:23:14 -0000
@@ -276,6 +276,15 @@ function drupal_mail_wrapper($message) {
     $from_name = variable_get('site_name', '');
   }
 
+  //Hack to fix reply-to issue.
+  $properfrom = variable_get('site_mail','');
+  if (!empty($properfrom)) {
+    $headers['From'] = $properfrom;
+  }
+  if (!isset($headers['Reply-To']) || empty($headers['Reply-To'])) {
+    $headers['Reply-To'] = $from;
+  }
+
   // Blank value will let the e-mail address appear.
 
   if ($from == NULL || $from == '') {
