函数:ts.smtp 通过 smtp 发送邮件
函数名称:通过 smtp 发送邮件
函数功能:通过 smtp 方式发送邮件
函数方法
status = ts.smtp("收件人邮箱","邮件主题","邮件正文","发送邮件的 smtp 服务器","发送邮件的 smtp 邮箱账号","发送邮件的 smtp 邮箱授权码")
返回值 | 类型 | 说明 |
---|---|---|
status | boolean | true - 发送成功,false - 发送失败 |
函数用例
local ts = require("ts")
status = ts.smtp("10879433@qq.com","紧急通知","今天不上班","smtp.qq.com","test@qq.com","testpassword")
if status then
dialog("Success", 0) --发送成功
else
dialog("False", 0) --发送失败
end
注意事项