Meteor Mailgun reply to emails not coming from

I have the following Meteor code, with Mailegun SMTP default SMTP settings:

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

The letter is sent normally, but when the client clicks "reply" in Gmail, he answers " customer@gmail.com " instead of " company@gmail.com ".

0
source share
1 answer

Make sure you don’t click “answer all” and not “answer”.

I just tested and, as expected, works with the latest meteorite and email module.

Best

0
source

Source: https://habr.com/ru/post/1246622/


All Articles