summaryrefslogtreecommitdiff
path: root/conf/payment_receipt_email
blob: 1a0a758300d325b68f9960aa29c15af2e5fb2253 (plain)
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

{ $date }

Dear { $name },

This message is to inform you that your payment of ${ $paid } has been
received.

Payment ID: { $paynum }
Date:       { $date }
Amount:     { $paid } 
Type:       { $payby } # { $payinfo }

{
  if ( $balance > 0 ) {
    $OUT .= "Your current balance is now \$$balance.\n\n";
  } elsif ( $balance < 0 ) {
    $OUT .= 'You have a credit balance of $'. sprintf("%.2f",0-$balance).
              ".\n".
            "Future charges will be deducted from this balance before billing ".
              "you again.\n\n";
            
  }
}
Thank you for your business.