Merge pull request #1483 from rog1121/patch-4

Mail Titles
This commit is contained in:
Sebastian Grewe 2014-01-20 08:34:44 -08:00
commit 6bb9ccb8e7
5 changed files with 5 additions and 5 deletions

View File

@ -62,7 +62,7 @@ class Mail extends Base {
$this->smarty->assign('WEBSITENAME', $this->setting->getValue('website_name'));
$this->smarty->assign('SUBJECT', $aData['subject']);
$this->smarty->assign('DATA', $aData);
$headers = 'From: Website Administration <' . $this->setting->getValue('website_email') . ">\n";
$headers = 'From: {$GLOBAL.website.name|default:"Unknown Pool"} <' . $this->setting->getValue('website_email') . ">\n";
$headers .= "MIME-Version: 1.0\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
if (strlen(@$aData['senderName']) > 0 && @strlen($aData['senderEmail']) > 0 )

View File

@ -6,6 +6,6 @@
{if $DATA.message}<p>Personal message:</p><p>{nocache}{$DATA.message}{/nocache}</p>{/if}
<p></p>
<p>Cheers,</p>
<p>Website Administration</p>
<p>{$GLOBAL.website.name|default:"Unknown Pool"}</p>
</body>
</html>

View File

@ -5,6 +5,6 @@
<p>http://{$smarty.server.SERVER_NAME}{$smarty.server.SCRIPT_NAME}?page=password&action=change&token={nocache}{$DATA.token}{/nocache}</p>
<p>You will be asked to change your password. You can then use this new password to login to your account.</p>
<p>Cheers,</p>
<p>Website Administration</p>
<p>{$GLOBAL.website.name|default:"Unknown Pool"}</p>
</body>
</html>

View File

@ -4,6 +4,6 @@
<p>You have requested a PIN reset through our online form.</p>
<p>Randomly Generated PIN: {$DATA.pin}</p>
<p>Cheers,</p>
<p>Website Administration</p>
<p>{$GLOBAL.website.name|default:"Unknown Pool"}</p>
</body>
</html>

View File

@ -5,6 +5,6 @@
<p>http://{$smarty.server.SERVER_NAME}{$smarty.server.SCRIPT_NAME}?page=account&action=confirm&token={nocache}{$DATA.token}{/nocache}</p>
<p></p>
<p>Cheers,</p>
<p>Website Administration</p>
<p>{$GLOBAL.website.name|default:"Unknown Pool"}</p>
</body>
</html>