This repository has been archived by the owner on Aug 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Emails for submission approval process (#47)
* emails working with template, needs refactoring * fixing path * fixing relative path reference * diff template files for diff emails * refactoring some stuff * removing hardcoded email * reverting db file * reverting build file * approval email * changed email settings to db table pulled from config file. Code needs refactoring so that there aren't two files with dbconnections open * updated tempaltes
- Loading branch information
Showing
11 changed files
with
5,413 additions
and
1,292 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<html> | ||
<head> | ||
</head> | ||
<body> | ||
<div style="margin:0 auto;max-width:600px;"> | ||
<p>Hi, <%= userName %></p></br> | ||
Congratulations! Your submission to Scorebaord has been approved. | ||
</br></br> | ||
Thank you, <br> | ||
<a href=" https://github.com/chanzuckerberg/scoreboard">The Scoreboard Team</a> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<html> | ||
<head> | ||
</head> | ||
<body> | ||
<div style="margin:0 auto;max-width:600px;"> | ||
<p>Hi, <%= userName %></p></br> | ||
Your solution to Scoreboard has been submitted and is in review. We will send you an email when your submission has been approved. | ||
</br></br> | ||
Thank you, <br> | ||
<a href=" https://github.com/chanzuckerberg/scoreboard">The Scoreboard Team</a> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<html> | ||
<head> | ||
</head> | ||
<body> | ||
<div style="margin:0 auto;max-width:600px;"> | ||
<p>There is a new Scoreboard submission that needs to be reviewed.</p></br> | ||
Thank you, <br> | ||
<a href=" https://github.com/chanzuckerberg/scoreboard">The Scoreboard Team</a> | ||
</div> | ||
</body> |
Oops, something went wrong.