Hi, I was trying to make a reply to a email but it's sending with empty content, I tried using forward and is working fine. Other thing when I set a flag for search answered not showing any answered messages (other answered messages answered in gmail UI are showing). I'm declaring the mail same as says in page. I tried using `plaintext(message)` and same result. ``` Email sendMail = EmailBuilder.replyingTo(emailR) .from("Estancia XXI", emailE.getEmail()) .prependText(message) .buildEmail(); ``` 