8 lines
316 B
PHP
8 lines
316 B
PHP
<?php
|
|
header('Content-Type: application/json');
|
|
|
|
// In the future, this can be connected to a database or an AI service.
|
|
$canned_response = "Thanks for your message! We've received it and will get back to you shortly. For now, feel free to browse our FAQ section.";
|
|
|
|
echo json_encode(['reply' => $canned_response]);
|