Amigos, dado que hay muchas más lecturas que respuestas, después de fundirme el cerebro, he llegado a una solución que funciona. Ustedes pueden darle su estilo propio en una hoja de estilos aparte.
Aquí les adjunto el formulario en html, llamado "Form.html":
Código HTML :
<!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=utf-8" />
<title>Cómo adjuntar un PDF a un formulario</title>
<style>
#container {
margin: 0 auto;
width: 628px;
}
form {
width:628px;
}
form h3 {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #333;
font-weight: lighter;
padding: 15px 10px 10px 1.7em;
margin:0;
}
fieldset {
position: relative;
width: 598px;
margin: 0px 14px 5px 14px;
padding: 0;
border: 1px solid #DEDEDE;
font-family: Arial, Helvetica, sans-serif;
color: #666;
font-size: 11px;
background-color: #EAEAEA;
}
fieldset.submit {
width: 600px;
border-style: none;
background-image: none;
padding: 0;
background-color: #FFFFFF;
text-align: center;
}
fieldset textarea.text {
width: 310px;
color: #000;
font: 12px Arial, Helvetica, sans-serif;
}
input.submit {
color: #545351;
padding: 0 10px;
}
</style>
<script type="text/javascript">
<!--
function MM_validateForm() { //v4.0
if (document.getElementById){
var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=document.getElementById(args[i]);
if (val) { nm=val.name; if ((val=val.value)!="") {
if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@');
if (p<1 || p==(val.length-1)) errors+='- '+nm+' must contain an e-mail address.\n';
} else if (test!='R') { num = parseFloat(val);
if (isNaN(val)) errors+='- '+nm+' must contain a number.\n';
if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
min=test.substring(8,p); max=test.substring(p+1);
if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n';
} } } else if (test.charAt(0) == 'R') errors += '- '+nm+' is required.\n'; }
} if (errors) alert('The following error(s) occurred:\n'+errors);
document.MM_returnValue = (errors == '');
} }
//-->
</script>
</head>
<body>
<div id="container">
<form action="enviar.php" method="post" enctype="multipart/form-data" name="adjuntarPDF">
<h3>Todos los campos deben ser completados.</h3>
<fieldset>
<legend></legend>
<table align="center" width="540" border="0" cellspacing="0" cellpadding="2">
<br />
<tr>
<td width="119" align="right">Nombre completo:</td>
<td colspan="5"><input name="nombres" type="Text" id="nombres" size="48" maxlength="48" /></td>
</tr>
<tr>
<td width="119" align="right">E-mail:</td>
<td colspan="5"><input name="from" type="Text" id="from" size="48" maxlength="48" /></td>
</tr>
<tr>
<td width="119" align="right">Código País:</td>
<td width="12"><input name="pais" type="text" id="pais" size="2" maxlength="2" /></td>
<td width="90" align="right">Código de área:</td>
<td width="12"><input name="area" type="text" id="area" size="2" maxlength="2" /></td>
<td width="50" align="right">Teléfono:</td>
<td width="203"><input name="telefono" type="text" id="telefono" size="8" maxlength="8" /></td>
</tr>
<tr>
<td width="119" align="right">Mensaje:</td>
<td colspan="5"><textarea name="message" rows="5" cols="30" class="text" id="message"></textarea></td>
</tr>
<tr>
<td class="rp" width="119" align="right">Adjuntar PDF</td>
<td colspan="5"><input name="fileatt" type="file" size="32"accept="application/pdf"/></td>
</tr>
</table>
</fieldset>
<fieldset class="submit">
<input type="submit" class="submit" onclick="MM_validateForm('nombres','','R','from','','RisEmail','pais','','RisNum','area','','RisNum','telefono','','RisNum','message','','R');return document.MM_returnValue" value="Enviar" />
<input class="submit" type="reset" value="Limpiar" />
</fieldset>
</form>
</div>
</body>
</html>
Les comento que hice la prueba con caracteres en portugués y también se reciben bien.
Ahora les dejo el php llamado "enviar.php":
Código PHP :
<?php
// Read POST request params into global vars
$to = '[email protected]';
$subject = 'Asunto de mi formulario de contacto';
$nombres = $_POST['nombres'];
$from = $_POST['from'];
$pais = $_POST['pais'];
$area = $_POST['area'];
$telefono = $_POST['telefono'];
$mensaje = $_POST['message'];
//para dar formato más legible a lo que se recibe por mail
$message = <<<EOD
Mensaje recibido desde: $subject\n
Nombres: $nombres\n
Email: $from\n
Telefono: $pais $area $telefono\n
Mensaje:\n
$mensaje\n
EOD;
// Obtain file upload vars
$fileatt = $_FILES['fileatt']['tmp_name'];
$fileatt_type = $_FILES['fileatt']['type'];
$fileatt_name = $_FILES['fileatt']['name'];
$headers = "From: $from";
if (is_uploaded_file($fileatt)) {
// Read the file to be attached ('rb' = read binary)
$file = fopen($fileatt,'rb');
$data = fread($file,filesize($fileatt));
fclose($file);
// Generate a boundary string
$semi_rand = md5(time());
$mime_boundary = "==Multipart_Boundary_x{$semi_rand}x";
// Add the headers for a file attachment
$headers .= "\nMIME-Version: 1.0\n" .
"Content-Type: multipart/mixed;\n" .
" boundary=\"{$mime_boundary}\"";
// Add a multipart boundary above the plain message
$message = "This is a multi-part message in MIME format.\n\n" .
"--{$mime_boundary}\n" .
"Content-Type: text/plain; charset=\"utf-8\"\n" .
"Content-Transfer-Encoding: 7bit\n\n" .
$message . "\n\n";
// Base64 encode the file data
$data = chunk_split(base64_encode($data));
// Add file attachment to the message
$message .= "--{$mime_boundary}\n" .
"Content-Type: {$fileatt_type};\n" .
" name=\"{$fileatt_name}\"\n" .
"Content-Disposition: attachment;\n" .
" filename=\"{$fileatt_name}\"\n" .
"Content-Transfer-Encoding: base64\n\n" .
$data . "\n\n" .
"--{$mime_boundary}--\n";
}
// Send the message
$ok = @mail($to, $subject, $message, $headers);
if ($ok) {
echo "<p>Tu mail se ha enviado correctamente</p>";
}
else {
echo "<p>Ha ocurrido un error y tu mail no se envio</p>";
}
// o pueden poner la url absoluta de alguna página dando las gracias
//header (("Location: http://www.ejemplotusitio.com/gracias.html"));
?>
Ustedes reemplacen las cosas obvias como el email ($to) que recibe los mail, el asunto($subject) y la dirección absoluta de la página de gracias o el mensaje de gracias.
El formulario entero está validado en el botón "enviar".
A pesar de que no sé php, y después de leer doscientos tutoriales lo logré.
Suerte
PD: ¿Alguien me puede decir cómo eliminar mi primer mensaje donde planteo la duda para dejar solamente lo que funciona?
Saludos