13 lines
240 B
Go
13 lines
240 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestSendMail(t *testing.T) {
|
|
// err := sendMail("pmvfck+22j3zqaeild4k@sharklasers.com", "Test Test 123", "Hello, this is just a test")
|
|
// if err != nil {
|
|
// t.Error("Mail Error: ", err)
|
|
// }
|
|
}
|