0

I want to send a simple HTML table which is saved in a java variable:

String table = "<table border=1> <tr><td>blabla</td></tr> </table>"; 

in outlook to any email address. The HTML should be formatted and not in plain text.

How do I do that?

thanks.

Jim Simson
  • 2,656
  • 3
  • 20
  • 29

1 Answers1

1

You can have a look at this post :

Java Mail API: send emails via corporate outlook acount

It might be useful to you.

dangi13
  • 1,235
  • 1
  • 7
  • 11