# node-aliyun-dms
nodejs版本阿里云DMS服务.
实现了 aliyun dms签名服务以及基础使用方法,具体的使用参数请参考aliyun dms api.
* submit 提交参数调用需要的功能
* callback 可返回json格式的数据
## Usage
- Install
```
$ npm install node-aliyun-dms
```
- Initialize
```
var DirectMailService = require('node-aliyun-dms');
var dms = new DirectMailService({
'accessid': 'testId',
'accesskey': 'testKeySecret'
});
```
- Submit Operation
```
var callback = function(err,data){
if(err){
console.log(err);
return;
}
console.log('Callback: \n',data);
};
/**
* sendSingleMail - 单个发送邮件
* @param {String} accountName 管理控制台中配置的发信地址
* @param {Boolean} replyToAddress 是否使用管理控制台中配置的回信地址(状态必须是验证通过)
* @param {Number} addressType 取值范围0~1: 0为随机账号(推荐,可以更好的统计退信情况);1为发信地址
* @param {String} toAddress 目标地址,多个Email地址可以逗号分隔
* @param {String} subject 邮件主题
* @param {String} htmlBody 邮件html正文
* @param {String} textBody 邮件text正文
* @param {Function} callback 回调函数
*/
dms.sendSingleMail(...);
/**
* sendBatchMail - 批量发送邮件
* @param {String} accountName 管理控制台中配置的发信地址
* @param {Number} addressType 取值范围0~1: 0为随机账号(推荐,可以更好的统计退信情况);1为发信地址
* @param {String} templateName 预先创建且通过审核的模板名称
* @param {String} receiversName 预先创建且上传了收件人的收件人列表名称
* @param {String} tagName 邮件标签名称
* @param {Function} callback 回调函数
*/
dms.sendBatchMail(...);
```
## Reference
- Api
[http://help.aliyun.com/document_detail/directmail/api-reference/overview.html?spm=5176.777602103.6.76.OLvdmM](http://help.aliyun.com/document_detail/directmail/api-reference/overview.html?spm=5176.777602103.6.76.OLvdmM)
- NPM
[https://www.npmjs.com/package/node-aliyun-dms](https://www.npmjs.com/package/node-aliyun-dms)
## License
The MIT License (MIT)
Copyright (c) 2015 Magic Term Libraries
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
收起资源包目录
nodejs版本阿里云DMS服务._node-aliyun-dms.zip (9个子文件)
node-aliyun-dms-master
src
lib
aliyun.js 2KB
utils.js 3KB
api.js 1KB
dms.js 3KB
LICENSE 1KB
package.json 710B
.gitignore 1KB
README.md 3KB
docs.md 3KB
共 9 条
- 1
资源评论
好家伙VCC
- 粉丝: 1985
- 资源: 9142
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功