UNPKG

@cgignite/ignite-sendgrid

Version:

Send Grid node allows you to send email within your Ignite APIs and apps via Send Grid

15 lines 361 B
module.exports = function (RED) { function sendGridConfig(n) { RED.nodes.createNode(this, n); this.name = n.name; this.templateid = n.templateid; this.from = n.from; } RED.nodes.registerType("send-grid-config", sendGridConfig, { credentials: { apikey: { value: "" }, } }); };