go-mail/smtp/auth_xoauth2.go

25 lines
556 B
Go
Raw Normal View History

// SPDX-FileCopyrightText: Copyright (c) 2023 The go-mail Authors
2023-05-28 14:31:04 +02:00
//
// SPDX-License-Identifier: MIT
package smtp
type xoauth2Auth struct {
username, token string
}
func XOAuth2Auth(username, token string) Auth {
return &xoauth2Auth{username, token}
2023-05-28 14:31:04 +02:00
}
func (a *xoauth2Auth) Start(_ *ServerInfo) (string, []byte, error) {
return "XOAUTH2", []byte("user=" + a.username + "\x01" + "auth=Bearer " + a.token + "\x01\x01"), nil
2023-05-28 14:31:04 +02:00
}
func (a *xoauth2Auth) Next(_ []byte, more bool) ([]byte, error) {
if more {
return []byte(""), nil
2023-05-28 14:31:04 +02:00
}
return nil, nil
}