瀏覽代碼

Removed debug line

Jordan Wright 9 年之前
父節點
當前提交
f57f4860ce
共有 1 個文件被更改,包括 0 次插入1 次删除
  1. 0 1
      email.go

+ 0 - 1
email.go

@@ -374,7 +374,6 @@ func (e *Email) Send(addr string, a smtp.Auth) error {
 // This is helpful if you need to connect to a host that is used an untrusted
 // certificate.
 func (e *Email) SendWithTLS(addr string, a smtp.Auth, t *tls.Config) error {
-	fmt.Println("Sending with T.L.S.")
 	// Merge the To, Cc, and Bcc fields
 	to := make([]string, 0, len(e.To)+len(e.Cc)+len(e.Bcc))
 	to = append(append(append(to, e.To...), e.Cc...), e.Bcc...)