Form->create('User');?>

Messaging - here's a quick guide on how this feature works

You can use this view to send messages to your current or future users or send them a temporary password.
Form->input('action', array('type' => 'select', 'options' => $actionOptions, 'id' => 'action')); ?>
Form->input('subject', array('type' => 'text', 'label' => 'Subject', 'style' => 'width:400px;')); ?>
Form->input('recipient', array('type' => 'select', 'options' => $recipientOptions, 'id' => 'recipient')); ?>
Form->input('recipientEmail', array('type' => 'text', 'label' => 'Recipient Email', 'style' => 'width:300px;')); ?>
Form->input('recipientEmailList', array('type' => 'select', 'options' => $recipientEmail, 'label' => 'Recipient Email')); ?>
Form->input('gpg', array('type' => 'textarea', 'class' => 'input-xxlarge')); ?>
Form->input('customMessage', array( 'label' => __('Enter a custom message', true), 'type' => 'checkbox', 'checked' => 'checked', 'id' => 'customMessageToggle' )); ?>
Form->input('message', array('type' => 'textarea', 'class' => 'input-xxlarge')); echo $this->Html->div('messageDiv', $str, array('id' => 'messageDiv')); ?>
Form->button(__('Submit'), array('class' => 'btn btn-primary')); echo $this->Form->end(); ?>
element('side_menu', array('menuList' => 'admin', 'menuItem' => 'contact')); ?>