newsletter2go
v1.0.1
Published
newsletter2go.de api implementation written in coffee-script ============================================================
Downloads
3
Readme
newsletter2go.de api implementation written in coffee-script
newsletter2go.de is a german online newsletter software.
You can find the API documentation on the website.
Currently this implementation only implements the send mails functionality.
Feel free to contribute.
Usage
#!/usr/bin/env coffee
Newsletter2Go = require './newsletter2go'
key = 'YOUR API KEY'
api = Newsletter2Go key
params =
to: '[email protected]'
from: '[email protected]'
subject: 'subject line'
html: '<h1>headline</h2><p>paragraph</p>'
text: 'this is a testmail'
api.sendMail params, console.log