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".