Dragon-Scourge/templates/mailbox_new.php
Jamin Blount e1b9948505 Beta 2 Build 12
12.10.2005 - Build 12 (Eggs):
- Members can now leave the Guild without requiring an officer to demote
them to zero.
- Rank 5 members can now edit/update Guild settings.
- # of Members is now set to 1 when a Guild is created, and updated
correctly when an application is approved.
- The Guild founder is now notified via the Post Office when someone
applies to join.
- Members can now arbitrarily deposit money to the Guild bank.
- You can no longer send guild money to yourself. Checks and balances,
man!
- Fixed image format selection so that it actually works.
- Removed Language selection from account registration/settings.
2017-02-05 11:51:02 -06:00

24 lines
1.3 KiB
PHP

<?php
$template = <<<END
You can send a letter to another player using the form below. Fields marked with a <span class="red">*</span> are required.
The Send Gold field allows you to attach money to the letter, which will be given to the recipient when they read it.<br /><br />
Note that there is a 5 Gold postage fee for sending all letters.<br /><br />
<form action="index.php?do=mailnew" method="post">
<table width="95%">
<tr><td width="20%">To:<span class="red">*</span></td><td><input type="text" name="recipient" size="30" maxlength="30" /> (Character Name)</td></tr>
<tr><td width="20%">Subject:<span class="red">*</span></td><td><input type="text" name="title" size="40" maxlength="200" /></td></tr>
<tr><td width="20%">Send Gold:</td><td><input type="text" name="gold" size="10" maxlength="10" /></td></tr>
<tr><td colspan="2">
Message:<br />
<textarea name="message" rows="7" cols="40"></textarea>
</td></tr>
<tr><td colspan="2"><input type="submit" name="submit" value="Send" /> <input type="reset" name="reset" value="Reset" /></td></tr>
</table>
</form>
<hr />
<a href="index.php?do=mailnew">New Letter</a> | <a href="index.php?do=mailbox">Inbox</a> | <a href="index.php?do=mailsent">Outbox</a><br /><br />
You may also return to <a href="index.php">town</a>.
END;
?>