dpd-template

An HTML template generator for deployd (useful for dpd-email)

Downloads
13
Committers
1

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

Package Rankings
Top 24.84% on Npmjs.org
Badges
Extracted from project README
Foo
Related Projects