Skip to content

Commit

Permalink
cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandshoemaker committed Apr 18, 2015
1 parent b89934a commit 696c558
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions mail/mailer.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,23 @@ import (
)

type Mailer struct {
server string
port string
auth smtp.Auth
from string
Server string
Port string
Auth smtp.Auth
From string
}

func NewMailer(server, port, username, password string) Mailer {
auth := smtp.PlainAuth("", username, password, server)
return Mailer{
server: server,
port: port,
auth: auth,
from: username,
Server: server,
Port: port,
Auth: auth,
From: username,
}
}

func (m *Mailer) SendMail(to []string, msg string) (err error) {
err = smtp.SendMail(m.server+":"+m.port, m.auth, m.from, to, []byte(msg))
err = smtp.SendMail(m.Server+":"+m.Port, m.Auth, m.From, to, []byte(msg))
return
}
2 changes: 1 addition & 1 deletion mail/mailer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

package mail
package mail

0 comments on commit 696c558

Please sign in to comment.