File: Norwegian-reminder3.html

package info (click to toggle)
sql-ledger 3.0.6-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 35,960 kB
  • ctags: 4,189
  • sloc: perl: 64,607; sql: 27,735; sh: 34; makefile: 21
file content (102 lines) | stat: -rw-r--r-- 1,840 bytes parent folder | download | duplicates (92)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102

<body bgcolor=ffffff>

<table width=100%>

  <%include letterhead.html%>
  
  <tr>
    <td width=10>&nbsp;</td>
    
    <th colspan=3><h4>3. R E M I N D E R</h4></th>
    
  </tr>

  <tr>
    <td>&nbsp;</td>
    
    <td colspan=3 align=right><%statementdate%></td>
  </tr>
  
  <tr>
    <td>&nbsp;</td>
    
    <td>
      <table width=100%>
	<tr valign=top>
	  <td><%name%>
	  <br><%address1%>
	  <%if address2%>
	  <br><%address2%>
	  <%end address2%>
	  <br><%city%>
	  <%if state%>
	  , <%state%>
	  <%end state%>
	  <%zipcode%>
	  <%if country%>
	  <br><%country%>
	  <%end country%>
	  <br>
          <%if customerphone%>
	  <br>Tel: <%customerphone%>
          <%end customerphone%>
          <%if customerfax%>
	  <br>Fax: <%customerfax%>
          <%end customerfax%>
          <%if email%>
	  <br><%email%>
          <%end email%>
	  </td>
	</tr>
      </table>
    </td>
  </tr>
  
  <tr height=10></tr>
  
  <tr>
    <td>&nbsp;</td>
    
    <td>
      <table width=100%>
        <tr>
	  <th>Invoice #</th>
          <th>Order #</th>
	  <th>Invoice Date</th>
	  <th>Due Date</th>
	  <th>Amount</th>
	</tr>
        
	<tr>
	  <td align=center><%invnumber%></td>
          <td align=center><%ordnumber%></td>
	  <td align=center><%invdate%></td>
	  <td align=center><%duedate%></td>
	  <td align=center><%due%></td>
	</tr>
	
        <tr>
	  <td colspan=5><hr size=1></td>
	</tr>
	
      </table>
    </td>
  </tr>
  
  <tr height=10></tr>
  
  <tr>
    <td>&nbsp;</td>
    <td>
    Our records indicate that payment for invoice # <%invnumber%> is past due.
    If the amount has already been paid, please disregard this notice.
    This is our final notice. If the above amount is not received within thirty (30) days collection of funds will be handed over to a collection agency.
    </td>
  </tr>

</table>

</body>
</html>