Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/templates/confirm-email.html

Issue 29646555: Issue 6210 - Implement Subscription (Double-opt-in) template for newsletter (Closed)
Patch Set: Update with specification changes Created Jan. 12, 2018, 1:19 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/templates/confirm-email.html
===================================================================
new file mode 100644
--- /dev/null
+++ b/src/templates/confirm-email.html
@@ -0,0 +1,76 @@
+<!--*******************************************************************************
+* Confirm Email Template
+****************************************************************************** -->
+<!--DOI-EMAIL-->
+<!--SENDER-EMAIL-->confirm@eyeomail.com<!--/SENDER-EMAIL-->
+<!--SENDER-NAME-->Marsha at Adblock Plus<!--/SENDER-NAME-->
+<!--PRIORITY-->1<!--/PRIORITY-->
+<!--TO-->$$FULLNAME$$<!--/TO-->
+<!--SUBJECT-->Confirm your email address<!--/SUBJECT-->
+<!--BODY-->
+<html>
+<head>
+<title>Confirm Email</title>
+<style type="text/css">
+html,body{
+ margin:0;
+ padding:0;
+ height:100%;
+ border:none;
+ font-family: Tahoma,Verdana,Arial,Helvetica,sans-serif;
+}
+</style>
+</head>
+<body bgcolor="#EBEBEB">
+<div style="width:100%;height:100%;background-color:#EBEBEB">
+<table border="0" cellspacing="0" cellpadding="0" width="600" bgcolor="#D9E1E8" align="center">
+ <tr>
+ <td width="600" height="70">
+ <img src="http://asp.backclick.de/email-header/email-header-anmeldebestaetigung.png">
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2" width="600">
+
+ <table cellpadding="0" border="0" cellspacing="25" width="600">
+ <tr>
+ <td style="color:#003366;" width="600">
+ Hey $$FULLNAME$$,<br><br>
+
+ We take ad blocking seriously across all channels, so we want to make sure that you actually signed up for our new monthly Adblock Plus update.<br><br>
+
+ Please confirm your email address by clicking on the link below:<br><br>
+
+ $$DOI-LINK$$<br><br>
+
+ Thanks for subscribing. We promise not to use your email address for anything evil!<br><br>
+
+ The Adblock Plus Team<br><br>
+
+ If you were not expecting this email, please disregard it.<br><br>
+ </td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+</table>
+</div>
+</body>
+</html>
+<!--/BODY-->
+<!--TEXT-->
+Hey $$FULLNAME$$,
+
+We take ad blocking seriously across all channels, so we want to make sure that you actually signed up for our new monthly Adblock Plus update.
+
+Please confirm your email address by clicking on the link below:
+
+$$DOI-LINK$$
+
+Thanks for subscribing. We promise not to use your email address for anything evil!
+
+The Adblock Plus Team
+
+If you were not expecting this email, please disregard it.
+<!--/TEXT-->
+<!--/DOI-EMAIL-->

Powered by Google App Engine
This is Rietveld