New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

node-red-contrib-bemail

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-red-contrib-bemail

Send email with blastengine by Node-RED

latest
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

blastengine node for Node-RED

Send email with blastengine by Node-RED

Install

npm install node-red-contrib-bemail

When you install the node, you need to restart Node-RED. After restarting, you can see the node in the network palette.

Network parret

Usage

Input settings parameters.

  • username
    Username of blastengine account.
  • apikey
    API key of blastengine account.
  • to
    Email address of recipient.
  • subject
    Subject of email.
  • message
    Mail body of email.
  • fromname
    From name of email.
  • fromemail
    From email address of email.

Every parameters are default value. You can replace parameters by payload.

Setting

Message body

You can use keywords in message body.

  • input
    Input values from previous node. You can use it if previous node return single value.
  • {key} Value of key in payload.

Example

If your previous node send those json.

{
	"value": "new value"
}

You can use input and value in message body.

We got new values.

__input__

__value__

__input__ will be replaced to { "value": "new value" } and __value__ will be replaced to new value.

Response

You can get response from blastengine.

{
	"deliveryId": 99999
}

Or error messages from blastengine.

{
	"error_messages": {
		"to": [
			"user@example.com: data is invalid email address."
		]
	}
}

License

MIT

Keywords

node-red

FAQs

Package last updated on 28 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts