public function sendDailySummary($applicationsCount) { $to = ADMIN_EMAIL; $subject = "📊 Daily Application Summary - " . date('Y-m-d', strtotime('-1 day')); $message = "📊 SHIMIZII APPLICATION SUMMARY\n"; $message .= "Date: " . date('Y-m-d', strtotime('-1 day')) . "\n"; $message .= "Total Applications Yesterday: " . $applicationsCount . "\n"; $message .= "========================================\n\n"; if ($applicationsCount > 0) { $message .= "✅ Great day! " . $applicationsCount . " new application(s) received.\n"; } else { $message .= "⚠️ No applications received yesterday.\n"; } $message .= "\nView all applications: https://shimizii.com/admin/\n"; $headers = "From: " . FROM_EMAIL . "\r\n"; $headers .= "Content-Type: text/plain; charset=UTF-8\r\n"; return mail($to, $subject, $message, $headers); } }