File "Form.php"
Full Path: C:/wamp64/www/PAGOS-T3/mail/phpMailer/examples/scripts/Form.php
File size: 1.52 KB
MIME-type: text/html
Charset: utf-8
<!DOCTYPE html>
<html>
<head>
<title>huguidugui.wordpress.com</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/estilos.css">
<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>
</head>
<body>
<div class="wrap">
<header>
Enviar mail desde localhost con PHP Mailer
</header>
<section id="principal">
<form id="formulario" method="post" action="enviar.php" enctype="multipart/form-data">
<div class="campos">
<label>Para:</label>
<input type="email" name="email" required>
</div>
<div class="campos">
<label>Asunto:</label>
<input type="text" name="asunto">
</div>
<div class="campos">
<label>Mensaje:</label>
<textarea name="mensaje"></textarea>
</div>
<label>Imagen:</label>
<input type="file" name="hugo" id="imagen" />
<input id="submit" type="submit" name="enviar" value="Enviar mail">
</form>
</section>
</div>
</body>
</html>