<div class="mailboxes view">
<h2><?php  echo __('Mailbox'); ?></h2>
	<dl>
		<dt><?php echo __('Id'); ?></dt>
		<dd>
			<?php echo h($mailbox['Mailbox']['id']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Sender'); ?></dt>
		<dd>
			<?php echo h($mailbox['Mailbox']['sender']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Receiver'); ?></dt>
		<dd>
			<?php echo h($mailbox['Mailbox']['receiver']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Subject'); ?></dt>
		<dd>
			<?php echo h($mailbox['Mailbox']['subject']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Message'); ?></dt>
		<dd>
			<?php echo h($mailbox['Mailbox']['message']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Attachment'); ?></dt>
		<dd>
			<?php echo h($mailbox['Mailbox']['attachment']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Extention'); ?></dt>
		<dd>
			<?php echo h($mailbox['Mailbox']['extention']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Status'); ?></dt>
		<dd>
			<?php echo h($mailbox['Mailbox']['status']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Created'); ?></dt>
		<dd>
			<?php echo h($mailbox['Mailbox']['created']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Modified'); ?></dt>
		<dd>
			<?php echo h($mailbox['Mailbox']['modified']); ?>
			&nbsp;
		</dd>
	</dl>
</div>
<div class="actions">
	<h3><?php echo __('Actions'); ?></h3>
	<ul>
		<li><?php echo $this->Html->link(__('Edit Mailbox'), array('action' => 'edit', $mailbox['Mailbox']['id'])); ?> </li>
		<li><?php echo $this->Form->postLink(__('Delete Mailbox'), array('action' => 'delete', $mailbox['Mailbox']['id']), null, __('Are you sure you want to delete # %s?', $mailbox['Mailbox']['id'])); ?> </li>
		<li><?php echo $this->Html->link(__('List Mailboxes'), array('action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Mailbox'), array('action' => 'add')); ?> </li>
	</ul>
</div>
