github.com/aarzilli/tools@v0.0.0-20151123112009-0d27094f75e0/appengine/login/gitkit/unused_emai_tpl.go (about) 1 package gitkit 2 3 // Email templates for OOB action 4 // OOB is "out of band" 5 const ( 6 emailTemplateResetPassword = `<p>Dear user,</p> 7 <p> 8 Forgot your password?<br> 9 FavWeekday received a request to reset the password for your account <b>%[1]s</b>.<br> 10 To reset your password, click on the link below (or copy and paste the URL into your browser):<br> 11 <a href="%[2]s">%[2]s</a><br> 12 </p> 13 <p>FavWeekday Support</p>` 14 15 emailTemplateChangeEmail = `<p>Dear user,</p> 16 17 <p> 18 Want to use another email address to sign into FavWeekday?<br> 19 FavWeekday received a request to change your account email address from %[1]s to <b>%[2]s</b>.<br> 20 To change your account email address, click on the link below (or copy and paste the URL into your browser):<br> 21 <a href="%[3]s">%[3]s</a><br> 22 </p> 23 <p>FavWeekday Support</p>` 24 25 emailTemplateVerifyEmail = `Dear user, 26 27 <p>Thank you for creating an account on FavWeekday.</p> 28 <p>To verify your account email address, click on the link below (or copy and paste the URL into your browser):</p> 29 <p><a href="%[1]s">%[1]s</a></p> 30 31 <br> 32 <p>FavWeekday Support</p>` 33 )