parent = false; $this->blocks = array( ); } protected function doDisplay(array $context, array $blocks = array()) { // line 1 echo "Subject: Welcome to \""; echo ($context["SITENAME"] ?? null); echo "\" "; // line 3 echo ($context["WELCOME_MSG"] ?? null); echo " Please keep this email for your records. Your account information is as follows: ---------------------------- Username: "; // line 8 echo ($context["USERNAME"] ?? null); echo " ---------------------------- Your password has been securely stored in our database and cannot be retrieved. In the event that it is forgotten, you will be able to reset it using the email address associated with your account. Please visit the following link in order to activate your account: "; // line 15 echo ($context["U_ACTIVATE"] ?? null); echo " Thank you for registering. "; // line 19 echo ($context["EMAIL_SIG"] ?? null); echo " "; } public function getTemplateName() { return "user_resend_inactive.txt"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 50 => 19, 43 => 15, 33 => 8, 25 => 3, 19 => 1,); } /** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */ public function getSource() { @trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED); return $this->getSourceContext()->getCode(); } public function getSourceContext() { return new Twig_Source("", "user_resend_inactive.txt", ""); } }