发送邮件

BaaS.sendEmail(data)

参数说明

data 是 Object 类型,它包括以下几个属性

参数名 类型 必填 描述
recipient String 收件人邮箱
subject String 邮件标题
body String 邮件内容

请求示例

  1. let data = {
  2. recipient: "aa@bb.com",
  3. subject: "email title",
  4. body: "email body"
  5. }
  6. BaaS.sendEmail(data).then(res => {
  7. // 发送成功
  8. }, err => {
  9. // 发送失败
  10. console.log(err)
  11. })