MailWizz EMA is a simple to use, efficient and full-featured email marketing application with an impressive features set. With MailWizz not only that you will be able to properly handle email marketing for your own purposes but you can also become an Email Service Provider for your customers
Download
VirusTotal
how to active ??? any help
Got this from our forum .. thanks to fire2000
1. Look for the file : install/controllers/WelcomeController.php
2. Copy the below code Replace the complete content with existing:
<?php defined('MW_INSTALLER_PATH') || exit('No direct script access allowed');
class WelcomeController extends Controller
{
public function actionIndex()
{
// start clean
$_SESSION = array();
$this->validateRequest();
if (getSession('welcome')) {
redirect('index.php?route=requirements');
}
$this->data['marketPlaces'] = $this->getMarketPlaces();
$this->data['pageHeading'] = 'Welcome';
$this->data['breadcrumbs'] = array(
'Welcome' => 'index.php?route=welcome',
);
$this->render('welcome');
}
protected function validateRequest()
{
if (!getPost('next')) {
return;
}
$licenseData = array(
'first_name' => 'NULLED',
'last_name' => 'NULLED',
'email' => 'mailwizz@nulledbyfire2000.com',
'market_place' => 'envato',
'purchase_code' => 'NULLED',
);
setSession('license_data', $licenseData);
setSession('welcome', 1);
}
public function getMarketPlaces()
{
return array(
'envato' => 'Envato Market Places',
'mailwizz' => 'Mailwizz Website',
);
}
}