Skip to content

Commit

Permalink
Removed debug line
Browse files Browse the repository at this point in the history
  • Loading branch information
jordan-wright committed Feb 13, 2016
1 parent 0b04232 commit f57f486
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion email.go
Original file line number Diff line number Diff line change
Expand Up @@ -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...)
Expand Down

0 comments on commit f57f486

Please sign in to comment.