#!/usr/local/vesta/php/bin/php '; $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); }