How to add ‘replyTo’ in an email.send()

email.send({
                    author: senderId,
                    recipients: customerId,
                    subject: emailSubject,
                    body: emailContent,
                    replyTo: salesAssociateEmail
                });

When we use ‘replyTo’ we can only mention a single email address.

Leave a comment

Your email address will not be published. Required fields are marked *