You can use the same Example above Send Simple Mail with a little modification. Use msg.setContent()
instead of msg.setText()
and use content type html as text/html
.
check this
msg.setContent(message, "text/html; charset=utf-8");
instead of
msg.setText(message);