<div class="mailcourses form">
	<?php echo $this->Form->create('Mailcourse'); ?>
	<fieldset>
		<legend><?php echo __('Add Mailcourse'); ?></legend>
				<?php
		echo $this->Form->input('course_id');
		echo $this->Form->input('sender');
		echo $this->Form->input('receiver');
		echo $this->Form->input('subject');
		echo $this->Form->input('message');
		echo $this->Form->input('attachment');
		echo $this->Form->input('extention');
		echo $this->Form->input('randomkey');
		echo $this->Form->input('status');
		echo $this->Form->input('linkfile');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

