| 12345678910111213141516 |
- package utl
- import "testing"
- func TestSmtp_Send(t *testing.T) {
- smtp := NewSmtp("smtp.163.com", 465, "yyk882002@163.com", "3#initialize", "wen.studio")
- body := `
- <h1>hello</h1>
- <div color="red">
- this is send from 163.com
- </div>
- `
- err := smtp.Send([]string{"wedtrav@foxmail.com"}, "hello", body)
- AssertNil(err, "send mail", t)
- }
|