Current File : /home/karenpetzb/application/modules/backoffice/views/scripts/user/newsletter.phtml
 <div class="table-box">
	<form action="<?php echo $this->baseUrl; ?>/backoffice/user/newsletter" method="post">
	<table class="table">
		<thead>
			<tr>
				<th colspan="2" class="col-md-4" ><?php echo $this->titlePage; ?></th>
			</tr>
		</thead>
		<tbody>
			<?php echo $this->render("alert_tr.phtml"); ?>
			<tr >
				<td class="col-md-4"><i class="glyphicon glyphicon-asterisk"></i>&nbsp;De</td>
				<td class="col-md-8"><input name="fromMessage"  class="form-control" size="50"  value="<?php echo $this->messageFrom; ?>"></td>
			</tr>
			<tr >
				<td class="col-md-4"><i class="glyphicon glyphicon-asterisk"></i>&nbsp;Envoyer �</td>
				<td class="col-md-8">
					<?php $listMail = $this->listMail; ?>
					<select name="email" class="form-control">
						<option value="All" selected="selected">Tout le monde</option>
						<?php foreach ($listMail as $row) { ?>
						<option value="<?php echo $row['EMAIL']; ?>"><?php echo $row['EMAIL']; ?></option>
						<?php } ?>
					</select>
				</td>
			</tr>
			<tr >
				<td class="col-md-4"><i class="glyphicon glyphicon-asterisk"></i>&nbsp;Objet du mail</td>
				<td class="col-md-8"><input type="text"  class="form-control" size="50" name="objetMessage" value="<?php echo $this->messageObjet; ?>"></td>
			</tr>
			<tr >
				<td class="col-md-4"><i class="glyphicon glyphicon-asterisk"></i>&nbsp;Message</td>
				<td class="col-md-8"><textarea rows="30" class="form-control" cols="50" name="mailMessage" id="mailMessage"><?php echo $this->messageBody; ?></textarea></td>
			</tr>
			<tr>
				<td colspan="2" class="text-center">
					<button class="btn btn-success" type="submit" name="add"><i class="glyphicon glyphicon-envelope"></i>&nbsp;Envoyer le mail</button>
				</td>
			</tr>
		</tbody>
	</table>
	</form>
</div>
<div class="clearfix"></div>
<script type="text/javascript">
$(function(){
	initEditor('#mailMessage');
});
</script>