<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Correo sin estilos</title>
<style>
  /* Resetear estilos */
  body, p, h1, h2, h3, h4, h5, h6, ul, ol, li, a {
    margin: 0;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    color: inherit;
    text-decoration: none;
    list-style: none;
  }
</style>
</head>
<body>
<!-- Contenido del correo -->
<p>Este es un correo electrónico sin estilos.</p>
<a href="#">Enlace sin estilos</a>
</body>
</html>