LaFactoriaVerde_Web/admin/mail_all.php
2010-10-06 15:53:49 +00:00

41 lines
1.4 KiB
PHP

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Language" content="es-ES" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Enviar e-mail masivo a todos los cliente - La Factoría Verde</title>
<link rel="stylesheet" type="text/css" href="adminpage.css">
<link rel="stylesheet" type="text/css" href="estilos.css">
</head>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<body>
<div id="layout">
<div id="header">
<img src="../img/lafactoriaverde.gif" alt="La Factoría Verde" />
<?php
$menu_activo='mail_masivo';
include('_menu.php');
?>
</div>
<div id="content">
<form method="post" action="mail_all_process.php">
<p>Asunto:<br />
<input type="text" name="e_subject" size="20" /><br />
Remitente:<br />
<input type="text" name="e_from" size="20" /><br />
Mensaje:<br />
<textarea rows="15" name="e_message" cols="76">
</textarea><br />
<input type="submit" value="Enviar" name="B1" /><input type="reset" value="Borrar"
name="B2" /></p>
</form>
</div>
<div id="footer">
</div>
</div>
</body>
</html>