Add template for welcome / registration confirmation mail

Change-Id: Ica9f6db7c2c1812b31c8e62eed6704f724dbc11f
diff --git a/templates/email.php b/templates/email.php
index 7d61eef..ccb20d0 100644
--- a/templates/email.php
+++ b/templates/email.php
@@ -39,6 +39,19 @@
 </p>
 ";
 
+$WELCOME_TEMPLATE = (object)[
+        "subject" => "[" . $SERVICE_ACRONYM . "] Thank you for your " . $SERVICE_ACRONYM . " registration",
+        "text"    => "Thank for registering at " . $SERVICE_ACRONYM . " .",
+        "html" => "<html><body>
+                <p>Dear {{full_name}},</p>
+                <p>Thank for registering at " . $SERVICE_ACRONYM . " .</p>"
+                . $REGISTRATION_INFORMATION . "
+                <p>
+                <p>Best regards,</p>
+                <p>" . $SERVICE_ACRONYM . " team</p>
+        </body></html>"
+];
+
 $MAIL_TEMPLATE = (object)[
         "subject" => "[" . $SERVICE_ACRONYM . "] Confirm your email address",
         "text"    => "To complete your registration please paste this to your browser: {{url}}",