Envío de Datos desde un formulario...
Hola como estas! Estoy desarrollando una página que me envíe datos a un correo electrónico, me envía los datos perfectamente... ¿pero necesito adjuntar algún archivo y enviarlo con el mensaje me podrías orientar como?
Este es el código que llevo: Lo hace bien, pero necesito adjuntar un archivo... Te agradezco mucho...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
</head>
<body>
<form style="margin-top:0;margin-bottom:0;" name="Form1" method="post" action="http://us.5.p12.webhosting.yahoo.com/forms?login=mauricio_orjuela&[email protected]&confirm=&error=">
<label>Nombre
<input type="text" name="textfield" />
</label>
<p>
<label>Apellido
<input type="text" name="textfield2" />
</label>
</p>
<p>
<label>Archivo
<input type="file" name="file" />
</label>
</p>
<p>
<label>Enviar
<input type="submit" name="Submit" value="Enviar" />
</label>
</p>
</form>
</body>
</html>
Este es el código que llevo: Lo hace bien, pero necesito adjuntar un archivo... Te agradezco mucho...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
</head>
<body>
<form style="margin-top:0;margin-bottom:0;" name="Form1" method="post" action="http://us.5.p12.webhosting.yahoo.com/forms?login=mauricio_orjuela&[email protected]&confirm=&error=">
<label>Nombre
<input type="text" name="textfield" />
</label>
<p>
<label>Apellido
<input type="text" name="textfield2" />
</label>
</p>
<p>
<label>Archivo
<input type="file" name="file" />
</label>
</p>
<p>
<label>Enviar
<input type="submit" name="Submit" value="Enviar" />
</label>
</p>
</form>
</body>
</html>
1 Respuesta
Respuesta de llobu
1