This is an example project for using a Docker container as a Twilio SendGrid inbound parse email webhooks and event webhooks
- Docker CE 18
- (Optional for development) A local Kubernetes installation
- Twilio SendGrid Account with inbound parse enabled to send form data (default)
- Twilio SendGrid Account with event webhooks enabled
- Ngrok or Internet accessible URL
mkdir <project>
cd <project>
git clone https://github.com/sendgrid/sendgrid-nodejs.git
cp -R sendgrid-nodejs/examples/inbound-parse-docker/* .
rm -rf sendgrid-nodejs/
- Build the container:
docker-compose build
- Run the container:
docker-compose up
- (Optional to save your self both commands above) Build & Run the container:
docker-compose up --build
- Run ngrok:
ngrok http 3000
- For inbound parse:
- Create an entry in the Settings > Inbound Parse with the ngrok URL. Use the
https
ngrok entry. - Send an email to your inbound parse email address.
- Create an entry in the Settings > Inbound Parse with the ngrok URL. Use the
- For event webhook
- Configure the Settings > Mail Settings > Event Notification
NOTE: ngrok has a "replay" feature so you don't have to keep sending emails to yourself. You can access that when ngrok is running at http://127.0.0.1:4040/inspect/http
At the moment, the app.js
only prints data to the console. You can extend this project by adding more business logic to the /parse_webhook
or /event_webhook
routes, contained in the routes/inbound-parse.js and routes/events.js.
The routes/inbound-parse.js route uses the express-formidable middleware to process the form data sent by Twilio SendGrid's Inbound Parse Webhook.
The events are available in the /parse_webhook
route in the req.fields
object. The app.js contains logging statements for the elements that are available to you. It may be useful to review the example-webhook-payload.txt for what the form data looks like when extending this application.
Attachments: express-formidable
automatically decodes and stores the images to the /tmp
directory in the container. This is configurable by passing a configuration object to the middleware:
app.use(formidable({
encoding: 'utf-8',
uploadDir: '/my/dir',
multiples: true, // req.files to be arrays of files
});
The routes/events.js route receives data in JSON format.
Additionally, the docker-compose has a volume mapping commented out if you'd prefer to store them in persistent storage outside of the container.
- In order for Kubernetes to use the container described in this project, the container must be built and stored in a container registry. You can choose to use a private registry in your cloud provider or a public registry (e.g., Docker Hub). You can also run a development environment of Kubernetes via Docker for Mac or Windows
- In this project, the Kubernetes (k8s) manifest uses the
imagePullPolicy: IfNotPresent
to pull from a local registry on the dev machine running Kubernetes as part of Docker. If you were deploying to Google Cloud, for example, you should disable that option. kubectl
is used to deploy. You should already have a workingkubectl context
. From the root of the project execute:kubectl apply -f k8s/inbound-parse.yml
- Kubernetes Developer Docs
- Install Kubernetes UI in Docker for Windows/Mac
- Deploy and Expose Apps in Kubernetes
- Download Docker
See LICENSE