Skip to content

Commit

Permalink
Merge pull request #36 from at0dd/issue_32
Browse files Browse the repository at this point in the history
Populate email subject
  • Loading branch information
jlin816 authored Nov 1, 2017
2 parents 67832f6 + f0533a4 commit a898fc0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/server/services/email.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ controller.sendVerificationEmail = function(email, token, callback) {

var options = {
to: email,
subject: "[HACKATHON] - Verify your email"
subject: "["+HACKATHON_NAME+"] - Verify your email"
};

var locals = {
Expand Down Expand Up @@ -125,7 +125,7 @@ controller.sendPasswordResetEmail = function(email, token, callback) {

var options = {
to: email,
subject: "[HACKATHON] - Password reset requested!"
subject: "["+HACKATHON_NAME+"] - Password reset requested!"
};

var locals = {
Expand Down Expand Up @@ -166,7 +166,7 @@ controller.sendPasswordChangedEmail = function(email, callback){

var options = {
to: email,
subject: "[HACKATHON] - Your password has been changed!"
subject: "["+HACKATHON_NAME+"] - Your password has been changed!"
};

var locals = {
Expand Down

0 comments on commit a898fc0

Please sign in to comment.