https://github.com/truemedia/mindstack-mail
Mail adapter for Mind Stack
https://github.com/truemedia/mindstack-mail
Last synced: 3 months ago
JSON representation
Mail adapter for Mind Stack
- Host: GitHub
- URL: https://github.com/truemedia/mindstack-mail
- Owner: Truemedia
- License: mit
- Created: 2018-11-02T22:00:57.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-05T21:29:16.000Z (over 6 years ago)
- Last Synced: 2025-01-12T21:42:18.633Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Lowbot mail
Mail adapter for lowbot## This is a work in progress
## Installation
NPM
```bash
npm i --save lowbot-mail
```Yarn
```bash
yarn add lowbot-mail
```## Usage
Node
```js
const LowBot = require('lowbot');
const mail = require('lowbot-mail');let botInstance = new LowBot()
.useAdapter(mail);
```