I am using node.js Nodemailer module and encountered the following error;
[Error: Unsupported configuration, downgrade Nodemailer to v0.7.1 or see the migration guide https://github.com/andris9/Nodemailer#migration-guide]
I looked at my package.json and realize that it is "nodemailer": "^1.8.0",
version.
How do I downgrade to v0.7.1 and prevent automatic upgrade later when I run npm update
?
If you need exactly v0.7.1, use "nodemailer": "0.7.1"
, delete nodemailer
under node_modules
and run npm install
again.
Another way to do this is to run the command:
npm remove nodemailer
npm install [email protected] --save
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With