* * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ //includes require_once "root.php"; require_once "resources/require.php"; require_once "resources/check_auth.php"; //check permissions if (!permission_exists('email_log_view')) { echo "access denied"; exit; } //add multi-lingual support $language = new text; $text = $language->get(); //validate the token $token = new token; if (!$token->validate('/app/email_logs/email_logs.php')) { //message::add($text['message-invalid_token'],'negative'); echo ""; echo "
\n"; echo $text['message-invalid_token']; echo "

\n"; echo " \n"; echo "
\n"; exit; } //show the content echo "".$text['header-settings']."\n"; echo "

\n"; ksort($_SESSION['email']); foreach ($_SESSION['email'] as $name => $setting) { foreach ($setting as $type => $value) { if ($type == 'uuid') { $uuid = $value; continue; } if ($name == 'smtp_password') { $value = '[REDACTED]'; } if (permission_exists('default_setting_edit')) { echo "".$name.': '.$value."
\n"; } else { echo $name.': '.$value."
\n"; } } } echo "

\n"; echo "".$text['header-connection']."\n"; echo "

\n"; //prepare the email $email_recipient = check_str($_POST['to']); $email_body = "Test Message

\n"; $email_body .= "This message is a test of the SMTP settings configured within your PBX.
\n"; $email_body .= "If you received this message, your current SMTP settings are valid.

\n"; //$email_attachments[0]['type'] = 'file'; //$email_attachments[0]['name'] = 'logo.png'; //$email_attachments[0]['value'] = $_SERVER["PROJECT_ROOT"]."/themes/default/images/logo.png"; $email_from_address = $_SESSION['email']['smtp_from']['text']; $email_from_name = $_SESSION['email']['smtp_from_name']['text']; //send email //ob_start(); //$sent = !send_email($email_recipient, 'Test Message', $email_body, $email_error, null, null, 3, 3, $email_attachments) ? false : true; //$email_response = ob_get_clean(); //send email $email = new email; $email->recipients = $email_recipient; $email->subject = 'Test Message'; $email->body = $email_body; $email->from_address = $email_from_address; $email->from_name = $email_from_name; $email->attachments = $email_attachments; $email->debug_level = 3; $email->method = 'direct'; $sent = $email->send(); //$email_error = $email->email_error; //show additional information echo "

\n"; echo "".$text['header-result']."\n"; echo "

\n"; echo $sent ? "Message Sent Successfully
Receipient: ".$email_recipient."" : "Message Failed...
".$email_error; echo "
\n"; echo "
\n"; echo " \n"; echo "
\n"; ?>