I'm sending an email with the JavaMailSender with html in the body like this:
String html = "<h2>RFC INVALIDOS en México:</h2>"+
"<h4>Se adjunta el siguiente listado de RFC inválidos al día de la fecha.</h4>" +
"<h3>Saludos!!!</h3>";
MimeMessageHelper helper = return new MimeMessageHelper(mimeMessage, true); // some helper
helper.setSubject(message.getSubject());
helper.setText(html, true);
Look at the vowels, (á, é, í) in "México", "inválidos" and "día"
and the mail is sended clipped, telling me is something more to see:
Notice the part:
...
[Mensaje recortado] Ver todo el mensaje
But if I send it without quoting the vowels:
String html = "<h2>RFC INVALIDOS en Mexico:</h2>"+
"<h4>Se adjunta el siguiente listado de RFC invalidos al dia de la fecha.</h4>" +
"<h3>Saludos!!!</h3>";
**look at the vowels **Look at the vowels, (a, e, i), in "mexico", "invalidos" and "dia"****
The mail is correctly and perfectly sent.
Any clues?