Código HTML:
$para="[email protected]"; $asunto="Mensaje desde el sitio web"; $msg=' <html> <head> <title>Mensaje VK</title> </head> <body> <strong>Persona:</strong> '.$nom." ".$ape.' <br><br> <strong>RUC:</strong> '.$ruc.' <br><br> <strong>Correo:</strong> '.$correo.' <br><br> <strong>Teléfono:</strong> '.$telefono.' <br><br> <strong>Ciudad:</strong> '.$ciudad.' <br><br> <strong>Mensaje:</strong><br>'.$mensaje.' </body> </html> '; $cabecera="MIME-Version: 1.0\r\n"; $cabecera.="Content-type: text/html; charset=iso-8859-1; \r\n"; $cabecera.="From: $nom \r\n"; $cabecera.="To: $para; \r\n Subject:$asunto \r\n"; mail($para, $asunto, $mensaje); if(mail($para,$asunto,$msg,$cabecera)){ echo "¡Mensaje enviado!"; }else{ echo "¡Fallo el envio!"; }