0

I have the following Meteor code, with Meteor's default Mailgun SMTP settings:

   Email.send({
      to: "customer@gmail.com,
      from: "company@gmail.com",
      replyTo: "company@gmail.com",
      subject: 'Test',
      text: "Test"
    });

The email sends fine, but when the customer clicks "reply" in Gmail, it replies to "customer@gmail.com" instead of "company@gmail.com".

maxko87
  • 2,892
  • 4
  • 28
  • 43
  • For anyone with this problem, it may be related to http://webapps.stackexchange.com/questions/57001/force-gmail-to-always-reply-to-sender-not-to-myself/59059#59059 – rubie Apr 08 '16 at 10:13

1 Answers1

0

Make sure you're not hitting "reply all" instead of "reply".

I have just tested and it's working as expected on my end with the latest meteor and the email module.

Best,

API_sheriff_orlie
  • 1,223
  • 10
  • 18