mailto2json
v1.0.7
Published
convert mailto links to json
Downloads
3
Readme
Basic Usage:
var mailto = require('mailto2json');
mailto.convert("mailto://[email protected]?subject=test&body=more testing");
turns this: mailto://[email protected]?subject=test&body=more testing
into this:
Object {
body: "more testing"
email: "[email protected]"
subject: "test"
}