Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theashraf/parse-server-sendgrid-email-adapter
Parse Server SendGrid email adapter which uses SendGrid transactional email templates
https://github.com/theashraf/parse-server-sendgrid-email-adapter
nodejs parse-server sendgrid
Last synced: 2 months ago
JSON representation
Parse Server SendGrid email adapter which uses SendGrid transactional email templates
- Host: GitHub
- URL: https://github.com/theashraf/parse-server-sendgrid-email-adapter
- Owner: theashraf
- Created: 2018-09-04T21:43:14.000Z (over 6 years ago)
- Default Branch: development
- Last Pushed: 2022-08-15T14:36:49.000Z (over 2 years ago)
- Last Synced: 2024-11-01T11:34:39.309Z (3 months ago)
- Topics: nodejs, parse-server, sendgrid
- Language: JavaScript
- Homepage:
- Size: 68.4 KB
- Stars: 5
- Watchers: 1
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Parse Server Sendgrid Email Adapter
## Installation
```sh
npm install parse-server-sendgrid-email-adapter
```## Usage
```javascript
const { ParseServer } = require('parse-server');
const sendGridAdapter = require('parse-server-sendgrid-email-adapter');const config = {
...,
emailAdapter: sendGridAdapter({
apiKey: '', // sendgrid api key
from: 'myApp ', // from email address,
passwordResetTemplate : '', // sendGrid template ID
verificationEmailTemplate : '' // sendGrid template ID
})
};const parseServer = new ParseServer(config);
```