This will allow users to send invitations to other people via email. Each account will still need to confirm the email address if the option is enabled. Addresses #330, will need to allow pool operators to enable this feature even with registrations turned off.
12 lines
349 B
Smarty
12 lines
349 B
Smarty
<html>
|
|
<body>
|
|
<p>Hello valued miner,</p><br />
|
|
<p>{$DATA.username} invited you to participate on this pool:
|
|
<p>http://{$smarty.server.SERVER_NAME}{$smarty.server.PHP_SELF}?page=register&token={$DATA.token}</p>
|
|
{if $DATA.message}<p>Personal message:</p><p>{$DATA.message}</p>{/if}
|
|
<p></p>
|
|
<p>Cheers,</p>
|
|
<p>Website Administration</p>
|
|
</body>
|
|
</html>
|