复制项目

This commit is contained in:
kim.dev.6789
2026-01-14 22:35:45 +08:00
parent 305d526110
commit b7f8db7d08
297 changed files with 81784 additions and 0 deletions

55
pkg/email/mail.go Normal file
View File

@@ -0,0 +1,55 @@
// Copyright © 2023 OpenIM open source community. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package email
import (
"context"
"fmt"
"github.com/openimsdk/tools/errs"
"gopkg.in/gomail.v2"
)
type Mail interface {
Name() string
SendMail(ctx context.Context, mail string, verifyCode string) error
}
func NewMail(smtpAddr string, smtpPort int, senderMail, senderAuthorizationCode, title string) Mail {
dail := gomail.NewDialer(smtpAddr, smtpPort, senderMail, senderAuthorizationCode)
return &mail{
title: title,
senderMail: senderMail,
dail: dail,
}
}
type mail struct {
senderMail string
title string
dail *gomail.Dialer
}
func (m *mail) Name() string {
return "mail"
}
func (m *mail) SendMail(ctx context.Context, mail string, verifyCode string) error {
msg := gomail.NewMessage()
msg.SetHeader(`From`, m.senderMail)
msg.SetHeader(`To`, []string{mail}...)
msg.SetHeader(`Subject`, m.title)
msg.SetBody(`text/html`, fmt.Sprintf("Your verification code is: %s. This code is valid for 5 minutes and should not be shared with others", verifyCode))
return errs.Wrap(m.dail.DialAndSend(msg))
}

51
pkg/email/mail_test.go Normal file
View File

@@ -0,0 +1,51 @@
package email
//func TestEmail(T *testing.T) {
// if err := InitConfig(); err != nil {
// fmt.Fprintf(os.Stderr, "\n\nexit -1: \n%+v\n\n", err)
// os.Exit(-1)
// }
// tests := []struct {
// name string
// ctx context.Context
// mail string
// code string
// want error
// }{
// {
// name: "success send email",
// ctx: context.Background(),
// mail: "test@gmail.com",
// code: "5555",
// want: errors.New("nil"),
// },
// {
// name: "fail send email",
// ctx: context.Background(),
// mail: "",
// code: "5555",
// want: errors.New("dial tcp :0: connectex: The requested address is not valid in its context."),
// },
// }
// mail := NewMail()
//
// for _, tt := range tests {
// T.Run(tt.name, func(t *testing.T) {
// if got := mail.SendMail(tt.ctx, tt.mail, tt.code); errors.Is(got, tt.want) {
// t.Errorf("%v have a err,%v", tt.name, tt.want)
// }
// })
// }
//}
//
//func InitConfig() error {
// yam, err := ioutil.ReadFile("../../config/config.yaml")
// if err != nil {
// return err
// }
// err = yaml.Unmarshal(yam, &config.Config)
// if err != nil {
// return err
// }
// return nil
//}