git-svn-id: https://192.168.0.254/svn/Proyectos.LaFactoriaVerde_Web/trunk@5 017afc1c-778d-45dc-8efe-cc7a6876851a
44 lines
1.6 KiB
PHP
44 lines
1.6 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">
|
|
<h1>E-mail masivo</h1>
|
|
<p>Rellenando este formulario, podrá enviar un correo electrónico a todos los usuarios de La Factoría Verde.</p>
|
|
<form method="post" action="mail_all_process.php">
|
|
<p>
|
|
<strong>Remitente:</strong><br />
|
|
<input type="text" name="e_from" size="50" value="La Factoría Verde"/><br /><br />
|
|
|
|
<strong>Asunto:</strong><br />
|
|
<input type="text" name="e_subject" size="50" /><br /><br />
|
|
<strong>Mensaje:</strong><br />
|
|
<textarea rows="15" name="e_message" cols="76">
|
|
</textarea><br /><br />
|
|
<input type="submit" value="Enviar"/><input type="reset" value="Borrar"/></p>
|
|
</form>
|
|
</div>
|
|
<div id="footer">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|