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,774
  • 3
  • 22
  • 30

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,275
  • 1
  • 8
  • 11