Nodemailer AMQP example

An example of using Nodemailer with RabbitMQ

  • 所有者: nodemailer/nodemailer-amqp-example
  • 平台:
  • 許可證:
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

Nodemailer AMQP example

This is an example of using RabbitMQ (amqplib) for queueing Nodemailer email messages. This allows you to push messages from your application quickly to delivery queue and let Nodemailer handle the actual sending asynchronously from a background process.

This example also demonstrates using different credentials for different messages using the same Nodemailer transport.

Setup

Download files from Github

$ git clone git://github.com/nodemailer/nodemailer-amqp-example.git
$ cd nodemailer-amqp-example

Install required dependencies

$ npm install --production

Make sure that you have a RabbitMQ server running (default config assumes RabbitMQ running on localhost with default credentials) and also check the configuration options in config.json.

Running

The example contains 3 different parts:

  1. Example SMTP server (server.js). This is where Nodemailer sends the messages to. The server prints message source to console and does not actually deliver anything
  2. Subscriber process (subscriber.js). This is the worker process that fetches queued messages from RabbitMQ and delivers these using Nodemailer. You can spawn up as many subscriber processes as you want, even though a single one should be fine in most cases.
  3. Publisher process (publisher.js). This is an example application process that pushes message data to RabbitMQ for delivery. Normally it would be the job of your application.

Run all processes in different windows, using the following execution order:

$ npm run server
$ npm run subscribe
$ npm run publish

Example

概覽

名稱與所有者nodemailer/nodemailer-amqp-example
主編程語言JavaScript
編程語言JavaScript (語言數: 1)
平台
許可證
發布數0
創建於2017-02-09 16:23:27
推送於2019-04-09 08:12:18
最后一次提交2019-04-09 11:12:17
星數207
關注者數8
派生數52
提交數4
已啟用問題?
問題數1
打開的問題數0
拉請求數1
打開的拉請求數0
關閉的拉請求數0
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?
去到頂部