Saturday, 15 September 2012

Email Driven HTTP Requests Using Node.js & Express -



Email Driven HTTP Requests Using Node.js & Express -

in node.js express, 1 can set server routes application based on http requests http client of source - provided sent right resource on right host. illustration route might be:

application.post('/resource', function(request, response, next) { dothings(); response.redirect('back'); });

is there middleware can installed set routes emails...? in imagination might like:

application.email('resource@hostname.com', function(subject, body, attachment, next) { dothings(); next(); });

node.js email http express

No comments:

Post a Comment