HEX
Server: Apache
System: Linux sg241.singhost.net 2.6.32-896.16.1.lve1.4.51.el6.x86_64 #1 SMP Wed Jan 17 13:19:23 EST 2018 x86_64
User: honghock (909)
PHP: 8.0.30
Disabled: passthru,system,shell_exec,show_source,exec,popen,proc_open
Upload Files
File: //opt/cloudlinux/alt-php54/root/usr/share/pear/RVSeagullMod/modules/user/templates/email_forgot.php
<?php
//  translations

$passwdReminder = SGL_Output::translate('Password Reminder');
$message = SGL_Output::translate('You are being sent this email because');
$logonIs = SGL_Output::translate('Your username is');
$passwdIs = SGL_Output::translate('Your new password is');
$click = SGL_Output::translate('Click');
$here = SGL_Output::translate('here');
$toLogon = SGL_Output::translate('to logon to the');
$siteNow = SGL_Output::translate('site now');

$body = <<< EOF
<table class="wide">
        <tr>
            <td><h3>$passwdReminder</h3></td>
        </tr>
        <tr>
            <td>$message</td>
        </tr>
        <tr>
            <td></td>
        </tr>
        <tr>
            <td>$logonIs: <strong>{$this->options['username']}</strong></td>
        </tr>
        <tr>
            <td>$passwdIs: <strong>{$this->options['password']}</strong></td>
        </tr>
        <tr>
            <td>$click <a href="{$this->options['siteUrl']}">$here</a> $toLogon {$this->options['siteName']} $siteNow</td>
        </tr>
</table>
EOF;

//Chang Format Email Template
$aParam = array(  'siteName' => $this->options['siteName']
            		, 'username' => $this->options['username']
            		, 'password' => $this->options['password']
            		, 'siteUrl' => $this->options['siteUrl']
               );

$aParamGlobal = array( 'siteName' => $this->options['siteName']
    					, 'siteUrl' => $this->options['siteUrl']					   
    				 );
            
$subjectKey = 'Forgot password: subject';
$bodyKey = 'Forgot password: body';
$ccKey = 'Forgot password: cc';     
?>