Created
November 21, 2012 21:31
Revisions
-
typerandom revised this gist
Nov 22, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -7,7 +7,7 @@ <h2>Hi <# capitalize(payload.user.name) #>!</h2><br><br> <p> <# shorten(payload.message.body, 25) #> <# if(payload.message.body.length > 25){ #> <a href="http://www.awesome.com/msg/<# urlencode(payload.message.id) #>/read/">login and read the full message</a> <# } #> </p> -
typerandom revised this gist
Nov 22, 2012 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,8 @@ <html> <body> <h2>Hi <# capitalize(payload.user.name) #>!</h2><br><br> <# capitalize(payload.sender.name) #> (<# payload.sender.id #>) sent you a message.<br> <p> <# shorten(payload.message.body, 25) #> -
typerandom revised this gist
Nov 22, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,7 @@ <h2>Hi <# capitalize(payload.name) #>!</h2><br><br> <# capitalize(payload.user.name) #> (<# payload.user.id #>) sent you a message.<br> <p> <# shorten(payload.message.body, 25) #> <# if(payload.message.body.length > 25){ #> <a href="http://www.awesome.com/msg/<# urlencode(payload.message.id) #>">login and read the full message</a> <# } #> -
typerandom revised this gist
Nov 21, 2012 . 1 changed file with 8 additions and 7 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -2,15 +2,16 @@ <body> <h2>Hi <# capitalize(payload.name) #>!</h2><br><br> <# capitalize(payload.user.name) #> (<# payload.user.id #>) sent you a message.<br> <p> <# shorten(payload.message.body, 25) <# if(payload.message.body.length > 25){ #> <a href="http://www.awesome.com/msg/<# urlencode(payload.message.id) #>">login and read the full message</a> <# } #> </p> Best regards,<br> Photos4Lulz </body> </html> -
typerandom revised this gist
Nov 21, 2012 . 1 changed file with 8 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -2,10 +2,15 @@ <body> <h2>Hi <# capitalize(payload.name) #>!</h2><br><br> <# payload.user_name #> sent you a message.<br> <p><# shorten(payload.message, 25)<p><br> <# if(payload.message.length > 25){ #> <a href="http://www.awesome.com/msg/<# urlencode(payload.message_id) #>">Click here to login and read the full message</a> <br><br> <# } #> Best regards,<br> Awesome Community Site </body> </html> -
typerandom created this gist
Nov 21, 2012 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ <html> <body> <h2>Hi <# capitalize(payload.name) #>!</h2><br><br> Thank you for signing up to XYZ.<br> <a href="http://example.com/email/verify?token=<# urlencode(payload.token) #>">Click here to verify your email</a><br><br> Best regards,<br> The XYZ Team </body> </html>