Ver original<?php if ($msg != "") { ?><span class="conf"><?php echo $msg; ?></span><br><?php } ?><form action="gracias.php" method="post" enctype="multipart/form-data"><p align="center"><br><br><br><br><br><br><br>Nombre<br><input type="text" name="Nombre" size="50" id="Nombre"><br><br>Empresa<br><input type="text" name="Empresa" size="50" id="Empresa"><br><br>Teléfono<br><input type="text" name="Telefono" size="50" id="Telefono"><br><br>Dirección<br><input type="text" name="Direccion" size="50" id="Direccion"><br><br>Población<br><input type="text" name="Poblacion" size="50" id="Poblacion"><br><br>País<br><input type="text" name="Pais" size="50" id="Pais"><br><br>Cargo <br><input type="text" name="Cargo" size="50" id="Cargo"></p>E-mail<br><input type="text" name="E-mail" size="50" id="E-mail"></p><p> Consulta<br><textarea name="consulta" cols="47" rows="8" wrap="virtual" id="mensaje"></textarea></p><br> </p><p align="center"><br><br> <p> <label> <input type="radio" name="radio" value="verde" id="RadioGroup1_0" /> Opción</label> <br /> <label> <input type="radio" name="radio" value="azul" id="RadioGroup1_1" /> Opción</label> <br /> <label> <input type="radio" name="radio" value="rojo" id="RadioGroup1_1" /> Opción</label> <br /> </p><input type="submit" name="btsend" class="boton" value="Enviar Email"><input type="hidden" name="action" value="send" /></p></form>
Ver original<?php if ($msg != "") { ?><span class="conf"><?php echo $msg; ?></span><br><?php } ?><form action="gracias.php" method="post" enctype="multipart/form-data"><p align="center"><br><br><br><br><br><br><br>Nombre<br><input type="text" name="Nombre" size="50" id="Nombre"><br><br>Empresa<br><input type="text" name="Empresa" size="50" id="Empresa"><br><br>Teléfono<br><input type="text" name="Telefono" size="50" id="Telefono"><br><br>Dirección<br><input type="text" name="Direccion" size="50" id="Direccion"><br><br>Población<br><input type="text" name="Poblacion" size="50" id="Poblacion"><br><br>País<br><input type="text" name="Pais" size="50" id="Pais"><br><br>Cargo <br><input type="text" name="Cargo" size="50" id="Cargo"></p>E-mail<br><input type="text" name="E-mail" size="50" id="E-mail"></p><p> Consulta<br><textarea name="consulta" cols="47" rows="8" wrap="virtual" id="mensaje"></textarea></p><br> </p><p align="center"><br><br> <p> <label> <input type="checkbox" name="check" value="rojo" /> rojo </label> <br /> <label> <input type="checkbox" name="check" value="azul" /> azul </label> <label> <input type="checkbox" name="check" value="verde" /> verde </label> <br /></p></form>
Ver original<?phprequire("class.phpmailer.php");$msg = "";if ($_POST['action'] == "send") {$varname = $_FILES['archivo']['value'];$vartemp = $_FILES['archivo']['tmp_name']; $mail = new PHPMailer();$mail->Host = "localhost";$mail->From = "[email protected]";$mail->FromName = "Mail con adjunto desde GENETICA";$mail->Subject = $_POST['asunto'];//$mail->AddAddress($_POST['destino']);$mail->AddAddress(1111@hotmail.com);if ($varname != "") {$mail->AddAttachment($vartemp, $varname);}$body .= $_POST['Nombre']."<br /><br />";$body .= $_POST['Empresa']."<br /><br />";$body .= $_POST['Telefono']."<br /><br />";$body .= $_POST['Direccion']."<br /><br />";$body .= $_POST['Poblacion']."<br /><br />";$body .= $_POST['Pais']."<br /><br />";$body .= $_POST['Cargo']."<br /><br />";$body .= $_POST['E-mail']."<br /><br />";$body .= $_POST['consulta']."<br /><br />";$body .= $_POST['radio']."<br /><br />"; //$body .= $_POST['check']."<br /><br />"; dependiendo de cual de los 2 escojieras... $body.= "<i>Enviado desde GENETICA</i><br /><br />";$mail->Body = $body;$mail->IsHTML(true);$mail->Send();//$msg = "Mensaje enviado correctamente";}?>