Meteor Mailgun response to emails not going to “from” address

廉价感情. 提交于 2019-12-13 04:41:53

问题


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


回答1:


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,



来源:https://stackoverflow.com/questions/26224282/meteor-mailgun-response-to-emails-not-going-to-from-address

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!