https://github.com/martinheidegger/hapi-mailchimp-simple-subscribe
One-liner to add a simple subscribe call to a mailchimp list.
https://github.com/martinheidegger/hapi-mailchimp-simple-subscribe
Last synced: 29 days ago
JSON representation
One-liner to add a simple subscribe call to a mailchimp list.
- Host: GitHub
- URL: https://github.com/martinheidegger/hapi-mailchimp-simple-subscribe
- Owner: martinheidegger
- Created: 2014-08-11T06:36:35.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-08-11T08:25:32.000Z (almost 11 years ago)
- Last Synced: 2025-03-05T13:41:28.379Z (4 months ago)
- Language: JavaScript
- Size: 105 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# hapi-mailchimp-simple-subscribe
```JavaScript
server.pack.register({
plugin: require("hapi-mailchimp-simple-subscribe"),
options: {
apiKey: "mailchimp-api-key",
listId: "id-of-your-mailchimp-list"
}
}, {
route: {
prefix: "/ml"
}
});
```And you should be able to do a push request to "/ml/subscribe" with "[email protected]".
Cheers!