资源加载中... loading...

Mail

发送邮件。

邮件发送成功返回真值,例如:true,发送失败返回假值,例如:false。 bool

Mail(smtpServer, smtpUsername, smtpPassword, mailTo, title, body)

用于指定邮件发送方的SMTP服务地址。 smtpServer true string 用于指定邮件发送方的邮箱地址。 smtpUsername true string 邮件发送方邮箱的SMTP密码。 smtpPassword true string 用于指定邮件接收方的邮箱地址。 mailTo true string 邮件标题。 title true string 邮件正文。 body true string

function main(){
    Mail("smtp.163.com", "asdf@163.com", "password", "111@163.com", "title", "body")
}
def main():
    Mail("smtp.163.com", "asdf@163.com", "password", "111@163.com", "title", "body")
void main() {
    Mail("smtp.163.com", "asdf@163.com", "password", "111@163.com", "title", "body");
}

smtpPassword参数设置的是SMTP服务的密码,不是邮箱密码。 设置smtpServer参数时,如果需要更改端口可以直接在参数smtpServer中加入端口号。 例如:QQ邮箱smtp.qq.com:587该端口测试可用。 如果出现报错:unencryped connection,需要修改Mail函数的smtpServer。 参数格式为:ssl://xxx.com:xxx,例如QQ邮箱的SMTPssl方式:ssl://smtp.qq.com:465或者smtp://xxx.com:xxx。 回测系统中不起作用。

{@fun/Global/Mail_Go Mail_Go}

IsVirtual Mail_Go