6 lines
130 B
PHP
6 lines
130 B
PHP
<?php
|
|
$mailAddress=$_GET['mailAddress'];
|
|
$output=shell_exec(__DIR__ . '/checkMail.sh \'' . $mailAddress . '\'');
|
|
echo $output;
|
|
?>
|