fix: CyberMail from field format + deploy runner syncs api/ and lib/

- Notifier.php + test-notify: use plain email address in 'from' field
  (CyberMail rejects "Name <email>" format)
- deploy-runner.sh: rsync panel/api/ and panel/lib/ to web root after
  panel/public/ sync; also syncs panel/bin/ to /opt/novacpx/bin/

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-08 04:40:16 +00:00
parent 2ab74b7569
commit bfa2cfc3f8
3 changed files with 10 additions and 2 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ class Notifier {
if (!$apiKey || !$to) return false;
$payload = json_encode([
'from' => "$fromName <$fromEmail>",
'from' => $fromEmail,
'to' => $to,
'subject' => $subject,
'html' => $html,