Present Pay Slip in HTML Format

Rauf

Rauf

VIP Member
We send pay slip to employees embedded in an Email, using "PPAT Level Messaging". But it does not look nice. Can I use HTML to present the data before employees. I thought about PDF files but size of PDF file is greater than HTML files. I need to minimize the storage too.
Can I use HTML here ? If so, how can I ? How can I format the message in HTML ?
 
You can achieve this functionality in BI Publisher to send mail to customer in HTML format, by simply changing the output format to HTML in BIP.

T,
Reddy
 
Unfortunately, I cannot use BIP. Still we are not upgraded for BIP, we are using 8.12. And also, upgrading to BIP is not yet in plan
frown.gif


But I wrote the following code in 'Item Glossary' of my DD item and it is working fine. I did not try the entire pay slip, this is just for a testing.
Hope this method will work.

<font class="small">Code:</font><hr /><pre> <html>
<title>New Payslip</title>
<head>
</head>
<body style="font-family:arial">

<table>
<tr>
<td colspan="2">Hello Mr.<b>&1</b>,</td>
</tr>
</table>
<div style="width:25%;" align="center">
<table style="width:25%">
<tr>
<td colspan="2">Basic</td>
<td>:</td>
<td>&2</td>
</tr>
<tr>
<td colspan="2">Others 1</td>
<td>:</td>
<td>&3</td>
</tr>
<tr>
<td colspan="2">Others 2</td>
<td>:</td>
<td>&4</td>
</tr>
<tr>
<td colspan="2"><font color="blue">Total</font></td>
<td>:</td>
<td><b>&5</b></td>
</tr>
</table>
</div>
</body>
</html> </pre><hr />
 
Back
Top