Changeset 762
- Timestamp:
- 05/26/08 16:02:42 (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.3/A2Billing_AGI/libs_a2billing/crontjob/a2billing_bill_diduse.php
r761 r762 116 116 $result = $instance_table -> SQLExec ($A2B -> DBHandle, $QUERY, 0); 117 117 118 $mail_user_content.="BALANCE REMAINING ".$mydids[5]-$mydids[3]." \n\n";119 $mail_user_content.="An automatic taking away of :".$mydids[3]." has been carry out of your account to pay your DID (".$mydids[7].")\n\n";120 $mail_user_content.="Monthly cost for DID :".$mydids[3]." \n\n";118 $mail_user_content.="BALANCE REMAINING ".$mydids[5]-$mydids[3]." ".strtoupper($A2B->config['global']['base_currency'])."\n\n"; 119 $mail_user_content.="An automatic taking away of :".$mydids[3]." ".strtoupper($A2B->config['global']['base_currency'])." has been carry out of your account to pay your DID (".$mydids[7].")\n\n"; 120 $mail_user_content.="Monthly cost for DID :".$mydids[3]." ".strtoupper($A2B->config['global']['base_currency'])."\n\n"; 121 121 $mail_user = true; 122 122 $mail_user_subject="DID notification - (".$mydids[7].")"; … … 124 124 // USER DONT HAVE ENOUGH CREDIT TO PAY FOR THE DID - WE WILL WARN HIM 125 125 $mail_user_content.="BALANCE REMAINING ".$mydids[5]."\n\n"; 126 $mail_user_content.="Your credit is not enough to pay your DID number (".$mydids[7]."), the monthly cost is :".$mydids[3]." \n\n";126 $mail_user_content.="Your credit is not enough to pay your DID number (".$mydids[7]."), the monthly cost is :".$mydids[3]." ".strtoupper($A2B->config['global']['base_currency'])."\n\n"; 127 127 $mail_user_content.="You have ".date ("d",$day_remaining)." days to recharge your card or the DID will be automatically released \n\n"; 128 128 $mail_user = true; trunk/Cronjobs/a2billing_bill_diduse.php
r761 r762 116 116 $result = $instance_table -> SQLExec ($A2B -> DBHandle, $QUERY, 0); 117 117 118 $mail_user_content.="BALANCE REMAINING ".$mydids[5]-$mydids[3]." \n\n";119 $mail_user_content.="An automatic taking away of :".$mydids[3]." has been carry out of your account to pay your DID (".$mydids[7].")\n\n";120 $mail_user_content.="Monthly cost for DID :".$mydids[3]." \n\n";118 $mail_user_content.="BALANCE REMAINING ".$mydids[5]-$mydids[3]." ".strtoupper($A2B->config['global']['base_currency'])."\n\n"; 119 $mail_user_content.="An automatic taking away of :".$mydids[3]." ".strtoupper($A2B->config['global']['base_currency'])." has been carry out of your account to pay your DID (".$mydids[7].")\n\n"; 120 $mail_user_content.="Monthly cost for DID :".$mydids[3]." ".strtoupper($A2B->config['global']['base_currency'])."\n\n"; 121 121 $mail_user = true; 122 122 $mail_user_subject="DID notification - (".$mydids[7].")"; … … 124 124 // USER DONT HAVE ENOUGH CREDIT TO PAY FOR THE DID - WE WILL WARN HIM 125 125 $mail_user_content.="BALANCE REMAINING ".$mydids[5]."\n\n"; 126 $mail_user_content.="Your credit is not enough to pay your DID number (".$mydids[7]."), the monthly cost is :".$mydids[3]." \n\n";126 $mail_user_content.="Your credit is not enough to pay your DID number (".$mydids[7]."), the monthly cost is :".$mydids[3]." ".strtoupper($A2B->config['global']['base_currency'])."\n\n"; 127 127 $mail_user_content.="You have ".date ("d",$day_remaining)." days to recharge your card or the DID will be automatically released \n\n"; 128 128 $mail_user = true;
