invoice template and config localization, #12367
[freeside.git] / conf / payment_receipt_email
1
2 { $date }
3
4 Dear { $name },
5
6 This message is to inform you that your payment of ${ $paid } has been
7 received.
8
9 Payment ID: { $paynum }
10 Date:       { $date }
11 Amount:     { $paid } 
12 Type:       { $payby } # { $payinfo }
13
14 {
15   if ( $balance > 0 ) {
16     $OUT .= "Your current balance is now \$$balance.\n\n";
17   } elsif ( $balance < 0 ) {
18     $OUT .= 'You have a credit balance of $'. sprintf("%.2f",0-$balance).
19               ".\n".
20             "Future charges will be deducted from this balance before billing ".
21               "you again.\n\n";
22             
23   }
24 }
25 Thank you for your business.
26