From: Seamus Lee Date: Tue, 8 Dec 2015 06:14:39 +0000 (+0000) Subject: CRM-17307 ensure that replyto_email is updated when re-using a previous mailing and... X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=7f457a8af5edae7540abc68281015a2d54340dea;p=civicrm-core.git CRM-17307 ensure that replyto_email is updated when re-using a previous mailing and changing the from address --- diff --git a/ang/crmMailing/FromAddress.js b/ang/crmMailing/FromAddress.js index 9034da6a22..2718ea0aa1 100644 --- a/ang/crmMailing/FromAddress.js +++ b/ang/crmMailing/FromAddress.js @@ -18,6 +18,7 @@ var addr = crmFromAddresses.getByLabel(newValue); mailing.from_name = addr.author; mailing.from_email = addr.email; + mailing.replyto_email = addr.email; }); // FIXME: Shouldn't we also be watching mailing.from_name and mailing.from_email? }