Support for Multiple Reply-To
techwes opened this issue · 2 comments
Issue Summary
Support for multiple reply to email addresses was recently added to the V3 Mail API (changelog) and this long standing issue was closed. However, support for this feature has yet to be added to this library.
Based on this comment it looks like @subinoy7 has a fork where this feature is supported, so that might be a good place to start (though I have not verified myself that it works)
Code Snippet
const msg = {
to: 'recipient@example.org',
from: 'sender@example.org',
replyToList: ['othersender@example.org', 'thirdsender@example.org'],
subject: 'Hello world',
text: 'Hello plain world!',
html: '<p>Hello HTML world!</p>',
};
@techwes Thanks for pointing that out. This issue has been added to our internal backlog to be prioritized. Pull requests and +1s on the issue summary will help it move up the backlog.
@techwes @shwetha-manvinkurke - We had a business requirement based on this feature, so I did the changes and deployed it in our production. It is getting used from the past 3 weeks by our users and no issues has been reported so far. So I raised a PR for the same along with test case coverage #1303