8 lines
196 B
PHP
8 lines
196 B
PHP
|
<?php
|
||
|
|
||
|
$template = <<<END
|
||
|
Thank you for sending this message.<br /><br />
|
||
|
You may now go back to your <a href="index.php?do=mailbox">Mailbox</a> or return to <a href="index.php">Town</a>.
|
||
|
END;
|
||
|
|
||
|
?>
|