发送邮件
let data = {
recipient: "aa@bb.com",
subject: "email title",
body: "email body"
}
BaaS.sendEmail(data).then(res => {
// 发送成功
}, err => {
// 发送失败
console.log(err)
})Last updated
Was this helpful?
let data = {
recipient: "aa@bb.com",
subject: "email title",
body: "email body"
}
BaaS.sendEmail(data).then(res => {
// 发送成功
}, err => {
// 发送失败
console.log(err)
})Last updated
Was this helpful?
Was this helpful?