New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

mailjs

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mailjs - npm Package Compare versions

Comparing version 0.1.5 to 0.1.6

16

mail.js

@@ -666,2 +666,18 @@ /**

return dest;
},
send: function( opts ) {
if ( !this.opts.transport )
throw new Error( "Nodemailer transport not configured." );
var body = opts.body;
body.html = true;
opts.html = mailjs.render( body );
delete body.html;
opts.text = mailjs.render( body );
this.opts.transport.sendMail( opts );
}

@@ -668,0 +684,0 @@ };

2

package.json
{
"name": "mailjs",
"version": "0.1.5",
"version": "0.1.6",
"description": "JavaScript HTML and text email renderer/formatter.",

@@ -5,0 +5,0 @@ "main": "mail.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc