Guest User

Untitled

a guest
Jul 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. //sample piece of code
  2.  
  3. String bodyText = "<html>"
  4. + "<body style ="font-family: Calibri; font-size:11pt; background-color:white ">"
  5. + "<table style ="border:1px solid black;background-color:#DBE5F1;width:100%">"
  6. + "<tr style = "background-color:#DBE5F1 ;text-align-left; font-size:11pt">"
  7. + "<br>"
  8. + "&nbsp Hi All,"
  9. + "</br>"
  10. + "<br>"
  11. + statusLine
  12. + "</br>"
  13. + " "
  14. +"<br>"
  15. + "</tr>"
  16. + "<td style = "text-align:right;width:10%;border-right:1px solid black">"
  17. + caseCreated
  18. + "</td>"
  19. + "<td style = "width:10%;border-right:1px solid black;text-align:right">"
  20. + Failure
  21. + "</td>"
  22. +"</html>";
  23.  
  24. //and for composing the mail message
  25.  
  26. message.setContent(bodyText, "text/html");
Add Comment
Please, Sign In to add comment