mirror of
https://github.com/myronblair/novacpx
synced 2026-06-30 17:50:41 -05:00
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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user