From 5a5d0fd250c28c3560ff00b9a367938e915eed7f Mon Sep 17 00:00:00 2001 From: Horus3 Date: Tue, 10 Feb 2015 14:01:31 +0100 Subject: Restructuring and bug fixes. --- app/mailers/mail.go | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 app/mailers/mail.go (limited to 'app/mailers/mail.go') diff --git a/app/mailers/mail.go b/app/mailers/mail.go deleted file mode 100644 index 6593f95..0000000 --- a/app/mailers/mail.go +++ /dev/null @@ -1,24 +0,0 @@ -package mailers - -import "github.com/tanema/revel_mailer" - -type Mailer struct { - revel_mailer.Mailer -} - -func (u Mailer) SendConfirmationKey(email, key) { - return u.Send(revel_mailer.H{ - "subject": "Confirmation Key", - "to": []string{email}, - "key": key, - }) -} - -func (u Mailer) ConfirmRegistraion(user, email, key) { - return u.Send(revel_mailer.H{ - "name": user, - "subject": "Confirm registration", - "to": []string{email}, - "key": key, - }) -} -- cgit v1.2.3