NGTools/uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/module/verify/send-email-link.js

13 lines
405 B
JavaScript
Raw Normal View History

/**
* 发送邮箱链接可用于登录注册绑定邮箱修改密码等操作
* @tutorial
* @param {Object} params
* @param {String} params.email 邮箱
* @param {String} params.scene 使用场景
* @returns
*/
module.exports = async function (params = {}) {
// 此接口暂未实现欢迎向我们提交pr
throw new Error('api[sendEmailLink] is not yet implemented')
}