https://github.com/taskforcesh/bullmq-mailbot
A BullMQ tutorial for building a email sending microservice.
https://github.com/taskforcesh/bullmq-mailbot
Last synced: about 2 months ago
JSON representation
A BullMQ tutorial for building a email sending microservice.
- Host: GitHub
- URL: https://github.com/taskforcesh/bullmq-mailbot
- Owner: taskforcesh
- License: mit
- Created: 2021-02-26T09:38:16.000Z (over 4 years ago)
- Default Branch: part1
- Last Pushed: 2021-10-29T13:05:28.000Z (over 3 years ago)
- Last Synced: 2025-04-07T18:06:58.112Z (3 months ago)
- Language: TypeScript
- Size: 32.2 KB
- Stars: 30
- Watchers: 2
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BullMQ Tutorial - Mailbot
This tutorial shows how to easily create a bot for sending emails.
The tutorial is divided into several parts, every part is located on a different branch so
that you can navigate the code easily matching the tutorial text.# Install
Just clone this repo and when inside the repo install the dependencies:
```bash
yarn
```after that you can build the sources:
```bash
yarn build
```and run the service:
```bash
yarn start
```Note, in order to be able to send emails with this module you need to
setup valid credentials for AWS as well as having a local Redis™ instance running.To test the service, in a separate terminal run:
```bash
yarn test '[email protected]'
```