-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcron.php
More file actions
43 lines (35 loc) · 2.19 KB
/
Copy pathcron.php
File metadata and controls
43 lines (35 loc) · 2.19 KB
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
<?php
include_once('config.php');
include_once('resources/init.php');
include_once('resources/users.php');
include_once('resources/transactions.php');
include_once('resources/recurring.php');
include_once('resources/activities.php');
include_once('resources/people.php');
include_once('resources/uiblocks.php');
$check = $db->prepare('SELECT value FROM config WHERE id=?');
$check->execute(array('cron'));
$result = $check->fetch(PDO::FETCH_ASSOC);
if(date('Y-m-d') !== date('Y-m-d', $result['value'])){
$users = get_users_by_reminddif($days);
foreach($users as $user) {
if(user_have_debtors_in_debt($user['email'])) {
if(is_null($user['reminddate'])) {
$message = "Hi " . $user['name'] . ",\r\n\r\nIt seems you've never sent any reminders on Tabby. Since some people still have an open debt with you, it's probably best if you check your bank account, update any information on Tabby and then sent out new reminders if required.\r\n\r\nYou can get started straight away at " . $base_url . ".\r\n\r\nTabby will remind you every " . $days . " days as long as there is open debt.\r\n\r\nHave a nice day!\r\n\r\nTabby";
}
else {
$message = "Hi " . $user['name'] . ",\r\n\r\nIt seems you haven't sent any new reminders on Tabby since " . date('d M Y', strtotime($user['reminddate'])) . ". Since some people still have an open debt with you, it's probably best if you check your bank account, update any information on Tabby and then sent out new reminders if required.\r\n\r\nYou can get started straight away at " . $base_url . ".\r\n\r\nTabby will remind you every " . $days . " days as long as there is open debt.\r\n\r\nHave a nice day!\r\n\r\nTabby";
}
$headers = 'From: ' . $application_email;
mail($user['email'], 'Tabby: time to send reminders', $message, $headers);
}
}
$recurring_expenses = get_all_recurring();
foreach($recurring_expenses as $recurring_expense) {
if(strtotime(get_nextrun($recurring_expense['start'], $recurring_expense['frequency'], $recurring_expense['lastrun'])) <= strtotime(date('Y-m-d'))) {
execute_recurring($recurring_expense['id']);
}
}
$update = $db->prepare('UPDATE config SET value=? WHERE id=?');
$update->execute(array(strtotime('now'), 'cron'));
}