I was trying to send html from oracle plsql package..the code worked and i received the email in lotus notes client. But the html table gets shrunk when window size is changed in lotus notes.
Please help me what should i put in html code to avoid this.. In the table style, i had included table layout : fixed, cellpadding and cellspacing to zero also included max width and min width and max height and min height to lock the table from getting shrunk. Here is my code:
<html>
<head>
<style>
table.table1 {
Cellspacing: 0;
Cellpadding: 0;
max-width:500pt;
min-width:500pt;
border: 1px solid black;
Border-collapse: collapse;
table-layout: fixed;
}
Tr,td {
Border-collapse: collapse;
}
</style>
</head>
<body>
<table class="table1">
<tr> <td>Sl.no</td> <td>Date</td> <td>Item Name</td> <td>Number of items</td> <td>Delivery date</td> </tr>
<tr> <td>1</td> <td>17 Nov 2016</td> <td>Battery</td> <td>11</td> <td>20 Dec 2016</td> </tr>
</body>
</html>
But all of this fails in lotus notes 8.5.