CSS No Sending JSP Email

0

Is there a way for me to send an email using java using css? In order to send the formatted body, I can, but I would like to put bootstrap in the content of the email

          //Criando a Multipart
          Multipart multipart = new MimeMultipart();

          //criando a primeira parte da mensagem
          MimeBodyPart attachment0 = new MimeBodyPart();
          //configurando o corpodamensagem com o mime type
          attachment0.setContent(corpoDaMensagem, "text/html; charset=UTF-8");


          //adicionando na multipart
          multipart.addBodyPart(attachment0);




          message.setContent(multipart);

Are there any?

Thank you

    
asked by anonymous 27.10.2016 / 18:18

0 answers