12 lines
209 B
Go
12 lines
209 B
Go
package email
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestSendDiscountCodeEmail(t *testing.T) {
|
|
err := sendNoticeEmail("我是测试标题", "我是测试内容", "mylomen.shao@freebrio.com")
|
|
fmt.Println(err)
|
|
}
|