exports.install = function() { F.route('/', view_homepage); F.route('/mail/', redirect_mail); }; function view_homepage() { this.view('homepage'); } function redirect_mail() { var self = this; // This function automatically reads view: email.html self.mail('petersirka@gmail.com', 'Test e-mail', '~email', { name: 'MODEL NAME' }); self.redirect('/?success=1'); }