CRM-18364: Reply-To field depopulates when saving then continuing a draft mailing
authorjitendrapurohit <jitendra.purohit@webaccessglobal.com>
Wed, 13 Apr 2016 11:10:56 +0000 (16:40 +0530)
committerjitendrapurohit <jitendra.purohit@webaccessglobal.com>
Thu, 14 Apr 2016 04:55:17 +0000 (10:25 +0530)
add comment

fix syntax typo

ang/crmMailing/FromAddress.js

index 2718ea0aa10610d37a3a7725155e1bf6c5ebaed0..aae6499f1c33d0072906ba3ea3a9547533d244dd 100644 (file)
           var addr = crmFromAddresses.getByLabel(newValue);
           mailing.from_name = addr.author;
           mailing.from_email = addr.email;
-          mailing.replyto_email = addr.email;
+          // CRM-18364: set replyTo as from_email only if custom replyTo is disabled in mail settings.
+          if (!CRM.crmMailing.enableReplyTo) {
+            mailing.replyto_email = crmFromAddresses.getByAuthorEmail(mailing.from_name, mailing.from_email, true).label;
+          }
         });
         // FIXME: Shouldn't we also be watching mailing.from_name and mailing.from_email?
       }