dpd-template
v0.0.5
Published
An HTML template generator for deployd (useful for dpd-email)
Downloads
4
Maintainers
Readme
DPD-TEMPLATE
dpd-template is deployd resource to generate an HTML template with data, it uses EJS to have a dynamical templating system.
Templates folder
It's easy to use, you just have to put your templates in a folder templates at the root of your deployd project.
├── app.dpd
├── node_modules
├── public
├── resources
└── templates
└── register.html
└── forgot.html
└── forgot.html
Examples
Next you have to add it in your event, here an example of validation mail with dpd-email on the event POST for my users collection :
dpd.template.post({"template": 'register.html', "data": {user: this}}, function(data) {
dpd.email.post({
to : "[email protected]",
subject : 'My subject',
html : data.html
}, function ( err, results ) {
console.log(results);
});
});
So the main part is
dpd.template.post({"template": 'register.html', "data": {user: this}}, function(data) {
});
And it will return an object with the attributes html, this attribute contains your template generated.
EJS
If you want learn to user EJS you can go here http://www.embeddedjs.com/
About me
If you want to offer me a beer