[ Index ] |
|
Code source de Seagull 0.6.1 |
1 <?php 2 // translations 3 $thanks = SGL_Output::translate('Thanks for registering with'); 4 $dear = SGL_Output::translate('Dear'); 5 $message = SGL_Output::translate('You are being sent this email because you just registered, your logon details are as follows'); 6 $logonIs = SGL_Output::translate('Your username is'); 7 $passwdIs = SGL_Output::translate('Your password is'); 8 $click = SGL_Output::translate('Click'); 9 $here = SGL_Output::translate('here'); 10 $toLogon = SGL_Output::translate('to logon to the'); 11 $siteNow = SGL_Output::translate('site now'); 12 13 $body = <<< EOF 14 <table class="wide"> 15 <tr> 16 <td><h3>$thanks {$this->options['siteName']}</h3></td> 17 </tr> 18 <tr> 19 <td>$dear {$this->options['toRealName']}, <br /><br /> 20 $message:</td> 21 </tr> 22 <tr> 23 <td></td> 24 </tr> 25 <tr> 26 <td>$logonIs: <strong>{$this->options['username']}</strong></td> 27 </tr> 28 <tr> 29 <td>$passwdIs: <strong>{$this->options['password']}</strong></td> 30 </tr> 31 <tr> 32 <td></td> 33 </tr> 34 EOF; 35 36 if (!$this->conf['RegisterMgr']['autoEnable']) { 37 $pending = SGL_Output::translate('Your registration is being reviewed'); 38 $body .= <<< EOF 39 <tr> 40 <td>$pending</td> 41 </tr> 42 </table> 43 EOF; 44 } else { 45 $body .= <<< EOF 46 <tr> 47 <td>$click <a href="{$this->options['siteUrl']}">$here</a> $toLogon {$this->options['siteName']} $siteNow</td> 48 </tr> 49 </table> 50 EOF; 51 } 52 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Fri Mar 30 01:27:52 2007 | par Balluche grâce à PHPXref 0.7 |