Explorar el Código

Removed debug line

Jordan Wright hace 9 años
padre
commit
f57f4860ce
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  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...)