邮箱模块
- Source:
Methods
(async, inner) confirmEmail(params, global) → {Promise.<object>}
确认邮件链接,并执行对应的操作。通过以下两种方式暴露:
- ajax: POST /api/email/:id
- socket.io: confirm-email
- Source:
Parameters:
Name | Type | Description |
---|---|---|
params |
object
|
请求数据
|
global |
object
|
Returns:
- Type:
-
Promise.<object>
(async, inner) sendEmail(params, global) → {Promise.<object>}
发送邮件,用于创建用户或重置密码。通过以下两种方式暴露:
- ajax: POST /api/email
- socket.io: emit email:create
- Source:
Parameters:
Name | Type | Description |
---|---|---|
params |
object
|
请求数据
|
global |
object
|
全局数据 |
Returns:
- Type:
-
Promise.<object>