npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

feathers-postmark

v1.0.0

Published

A Postmark API service adapter for FeathersJS

Downloads

30

Readme

feathers-postmark

Greenkeeper badge

Build Status Test Coverage Dependency Status Download Status

A Postmark API service adapter for FeathersJS

Installation

npm install feathers-postmark --save

postmark-logo

Documentation

The feathers-postmark service adapter creates services that send transactional email through Postmark.

Configuration

Like all Feathers service adapters, the postmark adapter is a function that receives an object as options and returns a class implementing the Feathers service interface.

postmark(options)

  • options {Object}
    • key {String} - Your Postmark API key. Set it to POSTMARK_API_TEST for testing purposes. Required.

Once you have passed your Postmark API key in the options, the service is ready to be used in your application:

const postmark = require('feathers-postmark');
const options = {
  key: 'POSTMARK_API_TEST'
};

app.use('messages', postmark(options));

app.service('messages').hooks({
  before: {
    create: [
      // Use hooks in feathers-hooks-common to protect your service from outside access.
      disallow('external')
    ]
  }
});

service.create(data[, params]) -> promise

The create method will send the provided data through the Postmark Email API.

  • data {PostmarkEmail | Array} - Supports any of the options available in the Postmark Email API body format.

Send a single message

If the payload of data is in the format of a PostmarkEmail Object, as shown in the example, below, the sendEmail method of the postmark client will be used.

const message = {
  "From": "[email protected]",
  "To": "[email protected]",
  "Cc": "[email protected]",
  "Bcc": "[email protected]",
  "Subject": "Test",
  "Tag": "Invitation",
  "HtmlBody": "<b>Hello</b>",
  "TextBody": "Hello",
  "ReplyTo": "[email protected]",
  "Headers": [
    {
      "Name": "CUSTOM-HEADER",
      "Value": "value"
    }
  ],
  "TrackOpens": true,
  "TrackLinks": "None",
  "Attachments": [
    {
      "Name": "readme.txt",
      "Content": "dGVzdCBjb250ZW50",
      "ContentType": "text/plain"
    },
    {
      "Name": "report.pdf",
      "Content": "dGVzdCBjb250ZW50",
      "ContentType": "application/octet-stream"
    }
  ]
};

app.service('my-postmark-service').create(message);

Send a Templated Message

If your message includes a TemplateId property, the sendEmailWithTemplate method of the postmark client will be used. The message data can include any of the PostmarkTemplateMessage properties.

Send a Batch Message

If the data passed to create is an array, the data will be passed to the sendEmailBatch method of the postmark client.

Complete Example

Here's an example of a Feathers server that uses feathers-postmark.

const feathers = require('feathers');
const rest = require('feathers-rest');
const hooks = require('feathers-hooks');
const bodyParser = require('body-parser');
const errorHandler = require('feathers-errors/handler');
const postmark = require('feathers-postmark');

// Initialize the application
const app = feathers()
  .configure(rest())
  .configure(hooks())
  // Needed for parsing bodies (login)
  .use(bodyParser.json())
  .use(bodyParser.urlencoded({ extended: true }))
  // Initialize your feathers plugin
  .use('messages', postmark({key: 'POSTMARK_API_TEST'})
  .use(errorHandler());

app.listen(3030);

console.log('Feathers app started on 127.0.0.1:3030');

License

Copyright (c) 2016

Licensed under the MIT license.