Generate a mailto protocol link
npm install mailto-link> Generate a mailto protocol link
```
$ npm install --save mailto-link
`js
var mailtoLink = require('mailto-link')
mailtoLink({to: 'bvdrucker@gmail', subject: 'Nice mailto lib'})
//=> mailto:bvdrucker@gmail.com?subject=Nice%20mailto%20lib
`
#### mailtoLink(options) -> string
##### options
Required
Type: object
###### to / cc / bcc
Type: string / array[string]
List of emails to send to.
###### subject
Type: string
The email subject.
###### body
Type: string`
The email body.
MIT © Ben Drucker