首页 > 其他 > 详细

sails中创建和使用services

时间:2015-12-18 21:07:17      阅读:387      评论:0      收藏:0      [点我收藏+]

从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+",\nYou‘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‘});

 

sails中创建和使用services

原文:http://www.cnblogs.com/wod-Y/p/5057893.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!