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/alt/php55/usr/share/pear/RVSeagullMod/modules/user/templates/email_status_notification.php
<?php
//  translations

$thanks = SGL_Output::translate('Thanks for registering with');
$dear = SGL_Output::translate('Dear');
$message = SGL_Output::translate('You are being sent this email because your new account status is now');
$newStatus = ($this->options['isEnabled']) ? SGL_Output::translate('active') : SGL_Output::translate('disabled');
$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>$thanks {$this->options['siteName']}</h3></td>
        </tr>
        <tr>
            <td>$dear {$this->options['toRealName']}, <br /><br />
                $message: <strong>$newStatus</strong></td>
        </tr>
        <tr>
            <td></td>
        </tr>
        <tr>
            <td></td>
        </tr>
EOF;

    $body .= <<< EOF
        <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']
					, 'isEnabled' => $this->options['isEnabled']
            		, 'toRealName' 	=> $this->options['toRealName']
            		, 'siteUrl' => $this->options['siteUrl']
               );

$aParamGlobal = array( 'siteName' => $this->options['siteName']
    					, 'siteUrl' => $this->options['siteUrl']					   
);

$subjectKey =  'Approved - Thanks for registering: subject';
$bodyKey =  'Approved - Thanks for registering: body';
$ccKey = 'Approved - Thanks for registering: cc';
?>