An open API service indexing awesome lists of open source software.

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

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);
```