ai-css/tools/smtp_test.go
2026-01-28 22:42:06 +08:00

9 lines
222 B
Go

package tools
import "testing"
func TestSendSmtp(t *testing.T) {
body := "<a href=''>hello</a>"
SendSmtp("smtp.sina.cn:25", "taoshihan1@sina.com", "382e8a5e11cfae8c", []string{"taoshihan1@sina.com"}, "123456", body)
}