From f57f4860ce6f47e2cfe663c46146f6392711790d Mon Sep 17 00:00:00 2001 From: Jordan Wright Date: Fri, 12 Feb 2016 20:50:50 -0600 Subject: [PATCH] Removed debug line --- email.go | 1 - 1 file changed, 1 deletion(-) diff --git a/email.go b/email.go index d8b1463..23861e5 100644 --- a/email.go +++ b/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...)