partially implemented todo tracker

This commit is contained in:
2025-04-20 17:05:41 -06:00
parent 9e47110758
commit ab30859446
29 changed files with 546 additions and 157 deletions
+3
View File
@@ -16,6 +16,7 @@ function notify_users($emails, $auther_username, $article_id, $article_title, $e
<p>' . $excerpt . '</p>
';
$client = new PostmarkClient($_ENV['POSTMARK_API_TOKEN']);
$client->sendEmail(
@@ -171,7 +172,9 @@ function check_csv_upload($target)
function pretty_dump($arr)
{
ob_start();
echo '<pre>';
print_r($arr);
echo '</pre>';
return ob_get_clean();
}