Jelajahi Sumber

Removed debug line

Jordan Wright 9 tahun lalu
induk
melakukan
f57f4860ce
1 mengubah file dengan 0 tambahan dan 1 penghapusan
  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...)