$type, 'name' => $data['name'], 'email' => $data['email'], 'phone' => $data['phone'] ?? null, 'company' => $data['company'] ?? null, 'country_region' => $data['country_region'] ?? null, 'industry' => $data['industry'] ?? null, 'topic' => $data['topic'] ?? null, 'message' => $data['message'], 'status' => 'new', 'meta' => $meta, ]); // Dispatch the email job SendContactSubmissionEmailJob::dispatch($submission); return $submission; } }