Hi,
Look at JavaMail examples .
Pasting the content of the JTable would be :
Set the content-type of the body as text/html.
Write yout body as html and copy each line of your JTable as rows in a HTML
table .
The content should look like:
<html>
<body>
<table>
<tr>
<td>field1 of row 1</td>
<td>field2 of row 1</td>
<td>........</td>
</tr>
<tr>
<td>field1 of row 2</td>
<td>field2 of row 2</td>
<td>........</td>
</tr></table>
</body>
</html>
Regards,
Arnaud
> Hi All,
>
[quoted text clipped - 11 lines]
>
> Marc Van Laer
Marc Van Laer - 12 Apr 2005 21:36 GMT
Thanks Arnaud,
Or should i say "merci"...
I'll give it a try that way
Regards,
Marc Van Laer
> Hi,
>
[quoted text clipped - 41 lines]
>>
>> Marc Van Laer