diff options
Diffstat (limited to 'views/mail')
| -rw-r--r-- | views/mail/password.html.ejs | 25 | ||||
| -rw-r--r-- | views/mail/password.text.ejs | 11 | ||||
| -rw-r--r-- | views/mail/welcome.html.ejs | 17 | ||||
| -rw-r--r-- | views/mail/welcome.text.ejs | 4 |
4 files changed, 57 insertions, 0 deletions
diff --git a/views/mail/password.html.ejs b/views/mail/password.html.ejs new file mode 100644 index 0000000..f266488 --- /dev/null +++ b/views/mail/password.html.ejs @@ -0,0 +1,25 @@ +<html> +<body> + +<p> + Hey there, +</p> + +<p> + We received a request to reset the password associated with this email address. +</p> + +<p> + Click the link below to make a new password: +</p> + +<p> + <a href="http://vvalls.com/auth/password?nonce=[[- passwordNonce ]]">http://vvalls.com/auth/password?nonce=[[- passwordNonce ]]</a> +</p> + +<p> + If this was requested in error, please disregard this message. +</p> + +</body> +</html> diff --git a/views/mail/password.text.ejs b/views/mail/password.text.ejs new file mode 100644 index 0000000..67e4b60 --- /dev/null +++ b/views/mail/password.text.ejs @@ -0,0 +1,11 @@ + +Hey there, + +We received a request to reset the password associated with this email address. + +Click the link below to make a new password: + +http://vvalls.com/auth/password?nonce=[[- passwordNonce ]] + +If this was requested in error, please disregard this message. + diff --git a/views/mail/welcome.html.ejs b/views/mail/welcome.html.ejs new file mode 100644 index 0000000..8b7194b --- /dev/null +++ b/views/mail/welcome.html.ejs @@ -0,0 +1,17 @@ +<html> +<body> + +<p> + <a href="http://vvalls.com/"><img src="http://vvalls.com/img/logo.svg"></a> +</p> + +<p> + Welcome to Vvalls, [[- username ]] +</p> + +<p> + <a href="http://vvalls.com/">www.vvalls.com</a> +</p> + +</body> +</html> diff --git a/views/mail/welcome.text.ejs b/views/mail/welcome.text.ejs new file mode 100644 index 0000000..cab9c15 --- /dev/null +++ b/views/mail/welcome.text.ejs @@ -0,0 +1,4 @@ + +Welcome to Vvalls, [[- username ]] + +http://www.posthang.com |
