Code Igniter Ion Auth:电子邮件模板在哪里



我第一次使用Code Igniter和Ion Auth。我想更改Ion Auth电子邮件模板中的语言(密码重置、电子邮件验证等)。

这似乎是密码重置电子邮件模板(forget_password.tpl.php),但我不确定诸如"email_forgot_password_subheading"one_answers"email-forgot-password_heading"之类的内容是在哪里定义的。Windows搜索我的本地安装不会显示任何结果。你能帮忙吗?

<html>
<body>
<h1><?php echo sprintf(lang('email_forgot_password_heading'), $identity);?></h1>
<p><?php echo sprintf(lang('email_forgot_password_subheading'),
anchor('auth/reset_password/'. $forgotten_password_code,    
lang('email_forgot_password_link')));?></p>
</body>
</html>

这些将在application/language/english/ion_auth_lang.php 的语言文件中

最新更新