sails中创建和使用services

从sails官方在线文档查知

// EmailService.js - in api/services
module.exports = {

    sendInviteEmail: function(options) {

        var opts = {"type":"messages","call":"send","message":
            {
                "subject": "YourIn!",
                "from_email": "info@balderdash.co",
                "from_name": "AmazingStartupApp",
                "to":[
                    {"email": options.email, "name": options.name}
                ],
                "text": "Dear "+options.name+",
You're in the Beta! Click <insert link> to verify your account"
            }
        };

        myEmailSendingLibrary.send(opts);

    }
};

//You can then use EmailService anywhere in your app:
// Somewhere in a controller
  EmailService.sendInviteEmail({email: 'test@test.com', name: 'test'});
原文地址:https://www.cnblogs.com/wod-Y/p/5057893.html