使用STARTTLS从Office365发送电子邮件失败

时间:2019-03-01 14:43:43

标签: email go starttls

我正在尝试从Office365服务器发送电子邮件,但出现以下错误:

  

恐慌:tls:第一个记录看起来不像TLS握手

帐户配置为以下smtp.office365.com:587(STARTTLS)。为了进行身份验证,需要用户名和密码。 我使用的代码与我在网络上看到的所有示例都非常相似,但是我无法使其正常工作。它在tls.Dial失败。

    func Mail() {
    mail := Mail{}
    mail.senderId = "theemail@example.com"
    mail.toIds = []string{"anotheremail@example.com"}
    mail.subject = "This is the email subject"
    mail.body = "body"

    messageBody := mail.BuildMessage()

    smtpServer := SmtpServer{host: "smtp.office365.com", port: "587"}


    auth := smtp.PlainAuth("", mail.senderId, `mypassword`, smtpServer.host)

    fmt.Println(auth)


    tlsconfig := &tls.Config{
        InsecureSkipVerify: true,
        ServerName:         smtpServer.host,
    }

    conn, err := tls.Dial("tcp", "smtp.office365.com:587", tlsconfig)

    if err != nil {
        log.Panic(err)
    }

    client, err := smtp.NewClient(conn, smtpServer.host)
    if err != nil {
        log.Panic(err)
    }


    if err = client.Auth(auth); err != nil {
        log.Panic(err)
    }


    if err = client.Mail(mail.senderId); err != nil {
        log.Panic(err)
    }
    for _, k := range mail.toIds {
        if err = client.Rcpt(k); err != nil {
            log.Panic(err)
        }
    }


    w, err := client.Data()
    if err != nil {
        log.Panic(err)
    }

    _, err = w.Write([]byte(messageBody))
    if err != nil {
        log.Panic(err)
    }

    err = w.Close()
    if err != nil {
        log.Panic(err)
    }

    client.Quit()

    log.Println("Mail sent successfully")

}

1 个答案:

答案 0 :(得分:1)

您正在尝试在未封装在TLS中的端口上执行tls拨号。 如果您想使用starttls

client, err := smtp.Dial("tcp", "smtp.office365.com:587")

if err != nil {
    log.Panic(err)
}

err = client.StartTLS(tlsconfig)
if err != nil {
    log.Panic(err)
}