mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-11-22 02:17:26 +00:00
85169dc960
It just echos back the subject given to it.
10 lines
159 B
PHP
Executable File
10 lines
159 B
PHP
Executable File
<?php
|
|
$resource = $_GET['resource'];
|
|
|
|
header("Content-type: application/json");
|
|
echo json_encode(array(
|
|
subject => $resource,
|
|
), JSON_PRETTY_PRINT);
|
|
?>
|
|
|