aboutsummaryrefslogtreecommitdiffstats
path: root/trunk/etherpad/src/templates/email/eepnet_license_info.ejs
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/etherpad/src/templates/email/eepnet_license_info.ejs')
-rw-r--r--trunk/etherpad/src/templates/email/eepnet_license_info.ejs72
1 files changed, 72 insertions, 0 deletions
diff --git a/trunk/etherpad/src/templates/email/eepnet_license_info.ejs b/trunk/etherpad/src/templates/email/eepnet_license_info.ejs
new file mode 100644
index 0000000..85556c7
--- /dev/null
+++ b/trunk/etherpad/src/templates/email/eepnet_license_info.ejs
@@ -0,0 +1,72 @@
+<% /* Copyright 2009 Google Inc.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS-IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License. */ %><%
+ var parts = licenseKey.split(":");
+ var name = parts[0];
+ var org = parts[1];
+ var key = parts[2];
+
+ if ((key.length % 2) != 0) {
+ key = key + "+";
+ }
+ var keyLine1 = key.substr(0, key.length/2);
+ var keyLine2 = key.substr(key.length/2, key.length);
+%>
+Dear <%= userName %>,
+
+Thank you for downloading EtherPad Private Network Edition.
+This is an automated email containing your license information.
+
+<% if (isEvaluation) { %>
+NOTE: This is an EVALUATION license, which will expire on
+<%= expiresDate.toString() %>.
+<% } %>
+
+****************************************
+NAME:
+
+ <%= name %>
+
+****************************************
+ORGANIZATION:
+
+ <%= org %>
+
+****************************************
+LICENSE KEY:
+
+ <%= keyLine1 %>
+ <%= keyLine2 %>
+
+****************************************
+INSTRUCTIONS:
+
+ http://<%= request.host %>/ep/pne-manual
+
+****************************************
+DOWNLOAD LINK:
+
+ http://<%= request.host %><%= isEvaluation ? "/ep/store/eepnet-download" : "/ep/store/eepnet-download-nextsteps" %>
+
+<% if (isEvaluation) { %>
+--
+
+This email was sent automatically from pad.spline.inf.fu-berlin.de because you signed
+up for EtherPad PNE. If you did not sign up for
+this, then you can safely just ignore this email.
+
+<% } else { %>
+--
+
+Thanks for buying EtherPad!
+<% } %> \ No newline at end of file