<?php
require("class.phpmailer.php");
$msg = "";
if ($_POST['action'] == "send") {
$varname = $_FILES['archivo']['name'];
$vartemp = $_FILES['archivo']['tmp_name'];
$varname2 = $_FILES['archivo2']['name'];
$vartemp2 = $_FILES['archivo2']['tmp_name'];
$nombre = $_POST['nombre'];
$email = $_POST['email'];
$telefono = $_POST['telefono'];
$ciudad = $_POST['ciudad'];
$estado = $_POST['estado'];
$pais = $_POST['pais'];
$mail = new PHPMailer();
$mail->Host = "mail.mihost.eu";
$mail->From = "
[email protected]";
$mail->FromName = "Blog Unijimpe";
$mail->Subject = $_POST['asunto'];
$mail->AddAddress($_POST['destino']);
if ($varname != "") {
$mail->AddAttachment($vartemp, $varname);
}
if ($varname2 != "") {
$mail->AddAttachment($vartemp2, $varname);
}
$body = "<strong>Mensaje</strong><br><br>".$_POST['mensaje']."<br>";
$body .= "Su Nombre es: " . $nombre . " \r\n";
$body .= "Su Email es: " . $email . " \r\n";
$body .= "Su Telefono es: " . $telefono . " \r\n";
$body .= "Su Ciudad es: " . $ciudad . " \r\n";
$body .= "Su Estado es: " . $estado . " \r\n";
$body .= "Su Pais es: " . $pais . " \r\n";
$body.= "<i>Enviado por http://blog.unijimpe.net</i>";
$mail->Body = $body;
$mail->IsHTML(true);
$mail->Send();
$msg = "Mensaje enviado correctamente";
}
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>PHP Email Attach</title>
<link href="mailattach.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center" class="descdet">
<div class="borde">
<strong class="subder">Envíar Email con Adjuntos</strong><br>
Ingresar los datos en el formulario. <br>
<?php if ($msg != "") { ?><span class="conf"><?php echo $msg; ?></span><br><?php } ?>
<form action="mailattach.php" method="post" enctype="multipart/form-data">
<p> Destinatario<br>
<input type="text" name="destino" size="50">
<label>Nombre <br>
<input name="nombre" type="text" id="nombre" size="50">
</label>
<label>Email<br>
<input name="email" type="text" id="email" size="50">
</label>
<label>Telefono<br>
<input name="telefono" type="text" id="telefono" size="50">
</label>
<label>Ciudad<br>
<input name="ciudad" type="text" id="ciudad" size="50">
</label><label>estado<br>
<input name="estado" type="text" id="estado" size="50">
</label>
<label>Pais<br>
<input name="pais" type="text" id="pais" size="50">
</label>
Asunto<br>
<input type="text" name="asunto" size="50">
Envia tu Fotografía en formato jpg<br>
<input type="file" name="archivo" size="32">
<br>
Envia tu DEMO en formato mp3
<input type="file" name="archivo2" size="32">
Por que quieres ser locutor<br>
y que horarios quieres transmitir<br>
<textarea name="mensaje" cols="47" rows="8" wrap="virtual" id="mensaje"></textarea>
<input type="submit" name="btsend" class="boton" value="Enviar Email">
<input type="hidden" name="action" value="send" />
</p>
</form>
</div>
</td>
</tr>
</table>
</body>
</html>