SERVICE_NAME -> SERVICE_ACRONYM
Change-Id: Icde00b05868ee8eab0e61440182332ceef7e8e73
diff --git a/templates/email.php b/templates/email.php
index 41c1eae..3033d65 100644
--- a/templates/email.php
+++ b/templates/email.php
@@ -1,9 +1,9 @@
<?php
$MAIL_TEMPLATE = (object)[
- "subject" => "[" . $SERVICE_NAME . "] Confirm your email address",
+ "subject" => "[" . $SERVICE_ACRONYM . "] Confirm your email address",
"text" => "To complete your registration please paste this to your browser: {{url}}",
"html" => "<html><body>
- <p>Almost there! Click on the confirm button below to confirm your email address and to complete your " . $SERVICE_NAME . " registration</p>
+ <p>Almost there! Click on the confirm button below to confirm your email address and to complete your " . $SERVICE_ACRONYM . " registration</p>
<a style='display: inline-block; outline: 0; cursor: pointer;
padding: 5px 16px;
font-size: 14px;
@@ -24,15 +24,15 @@
border-color: #1b1f2326;
transition-duration: 0.1s;
}
- ' href='{{url}}'>Confirm " . $SERVICE_NAME . " registration</a>
+ ' href='{{url}}'>Confirm " . $SERVICE_ACRONYM . " registration</a>
</body></html>"
];
$RECOVERY_EMAIL_TEMPLATE = (object)[
- "subject" => "[" . $SERVICE_NAME . "] Reset password for your " . $SERVICE_NAME . " account",
+ "subject" => "[" . $SERVICE_ACRONYM . "] Reset password for your " . $SERVICE_ACRONYM . " account",
"text" => "Seems you requested a password reset. If that wasn't you please ignore this message. Otherwise go to this url to change your password: {{url}}",
- "html" => "<html><body><h3>Forgot your " . $SERVICE_NAME . " password?</h3>
+ "html" => "<html><body><h3>Forgot your " . $SERVICE_ACRONYM . " password?</h3>
<p>It seems that you requested a password reset. If that wasn't you please ignore this message. Otherwise click the button below to reset your password</p>
<a style='
display: inline-block;
@@ -51,16 +51,16 @@
transition: all .1s ease;
box-shadow: 0 0 0 0 #fff, 0 0 0 3px #1de9b6;
}
- ' href='{{url}}'>Reset your " . $SERVICE_NAME . " password</a>
+ ' href='{{url}}'>Reset your " . $SERVICE_ACRONYM . " password</a>
</body></html>"
];
// Add the support email there
$PASSWORD_CHANGED_EMAIL_TEMPLATE = (object)[
- "subject" => "[" . $SERVICE_NAME . "] Your " . $SERVICE_NAME . " password was changed",
+ "subject" => "[" . $SERVICE_ACRONYM . "] Your " . $SERVICE_ACRONYM . " password was changed",
"text" => "Your password was changed successfully. If this wasn't you please contact support",
"html" => "<html><body>
- <h3>" . $SERVICE_NAME . " password changed</h3><p>Your password was changed successfully. If this wasn't you please contact support.</p>
+ <h3>" . $SERVICE_ACRONYM . " password changed</h3><p>Your password was changed successfully. If this wasn't you please contact support.</p>
</body></html>"
];