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

postmark

Package Overview
Dependencies
Maintainers
1
Versions
88
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postmark - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

6

lib/postmark/index.js

@@ -52,3 +52,7 @@ var http = require("http");

} else if (response.statusCode == 422) {
throw("Incorrect or Malformed JSON message: "+JSON.parse(body["Message"]))
var body = "";
response.on("data", function (i) { body += i; })
response.on("end", function () {
throw("Incorrect or Malformed JSON message: "+JSON.parse(body)["Message"]);
})
} else if (response.statusCode == 200) {

@@ -55,0 +59,0 @@ return true;

2

package.json
{ "name" : "postmark"
, "description" : "Ridiculously Simple Email Sending From Node.js using http://www.postmarkapp.com"
, "tags" : ["email", "utility"]
, "version" : "0.1.2"
, "version" : "0.1.3"
, "author" : "Chris Williams <voodootikigod@gmail.com>"

@@ -6,0 +6,0 @@ , "main" : "./lib/postmark"

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