| 1234567891011121314151617181920212223242526272829303132333435363738 |
- #!/usr/local/hestia/php/bin/php
- <?php
- error_reporting(NULL);
- if (empty($argv[1])) {
- echo "ERROR: not enough arguments\n";
- echo "USAGE: mail-wrapper.php -s SUBJECT EMAIL [NOTIFY]\n";
- exit(3);
- }
- $options = getopt("s:f:");
- if ((!empty($argv[4])) && ($argv[4] == 'no')) {
- exit;
- }
- define('NO_AUTH_REQUIRED',true);
- include("/usr/local/hestia/web/inc/main.php");
- // Set system language
- exec (HESTIA_CMD . "v-list-sys-config json", $output, $return_var);
- $data = json_decode(implode('', $output), true);
- if (!empty( $data['config']['LANGUAGE'])) {
- $_SESSION['language'] = $data['config']['LANGUAGE'];
- } else {
- $_SESSION['language'] = 'en_US';
- }
- // Define vars
- $from = 'Hestia Control Panel <hestia@'.gethostname().'>';
- $to = $argv[3]."\n";
- $subject = $argv[2]."\n";
- $mailtext = file_get_contents("php://stdin");
- // Send email
- if ((!empty($to)) && (!empty($subject))) {
- send_email($to,$subject,$mailtext,$from);
- }
|