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/controllers/mail.go | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 app/controllers/mail.go (limited to 'app/controllers/mail.go') diff --git a/app/controllers/mail.go b/app/controllers/mail.go new file mode 100644 index 0000000..b05da4e --- /dev/null +++ b/app/controllers/mail.go @@ -0,0 +1,24 @@ +package controllers + +import "github.com/tanema/revel_mailer" + +type Mailer struct { + revel_mailer.Mailer +} + +func (u Mailer) SendConfirmationKey(email, key string) error { + return u.Send(revel_mailer.H{ + "subject": "Confirmation Key", + "to": []string{email}, + "key": key, + }) +} + +func (u Mailer) ConfirmRegistration(user, email, key string) error { + return u.Send(revel_mailer.H{ + "name": user, + "subject": "Confirm registration", + "to": []string{email}, + "key": key, + }) +} -- cgit v1.2.3