目录

$tel

是与电话、短信、邮件相关的服务对象

$tel.call()

打电话

示例代码

  1. $tel.call("139***")

$tel.sendMsg()

发短信服务,支持群发短信

示例代码

  1. $tel.sendMsg({
  2. "tel" : "139***,1397***",//电话号码
  3. "body" : "hello"//短信内容
  4. })

$tel.sendMail()

发邮件服务,支持群发邮件

示例代码

  1. $tel.sendMail({
  2. "receive" : "wwww@qq.com,lll@163.com"//收件人
  3. "title" : "hello",//邮件主题
  4. "content" : "欢迎使用UAP Mobile"//邮件内容
  5. })

用例github下载地

文档更新时间: 2018-01-15 14:26