node.js - Don't want to receive an email on "from" email id if "to" email id is not reachable -


i sending email multiple email ids. using nodemailer since code in node.js.

now working fine till email ids have sent email reachable.

but if email id not reachable, receiving email on "from" email id subject. "delivery status notification (failure)".

i don't want receive failure email on email id. possible receive on different email id or not receive on email id?

the code follows:

  transporter.sendmail({      from: email id,      : email id,      subject : subject,        text :text,        replyto : reply email id       } 

i have tried add reply email id still failure emails coming email id.


Comments

Popular posts from this blog

jsf - "PropertyNotWritableException: Illegal Syntax for Set Operation" error when setting value in bean -

arrays - Algorithm to find ideal starting spot in a circle -

php - Autoloader issue not returning Class -