Subject: {$subject}
"; $formatted .= '' . nl2br($message) . '
'; $recipient = (string) config('support.contact_email', 'support@alrahmaisgl.org'); $emailSent = false; if (!app()->runningUnitTests()) { $emailSent = $this->emailService->send($recipient, $subject, $formatted, null, $email, $name); } if (!$emailSent) { Log::warning('Contact email failed for ' . $email); } return [ 'email_sent' => $emailSent, 'recipient' => $recipient, ]; } }