Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace Pagekit\Mail\Controller; use Pagekit\Application as App; use Pagekit\Uti..
Decoded Output download
<?php
namespace Pagekit\Mail\Controller;
use Pagekit\Application as App;
use Pagekit\Util\Arr;
/**
* @Access("system: access settings", admin=true)
*/
class MailController
{
/**
* @Request({"option": "array"}, csrf=true)
*/
public function smtpAction($option = [])
{
try {
App::mailer()->testSmtpConnection($option['host'], $option['port'], $option['username'], $option['password'], $option['encryption']);
return ['success' => true, 'message' => __('Connection established!')];
} catch (\Exception $e) {
return ['success' => false, 'message' => sprintf(__('Connection not established! (%s)'), $e->getMessage())];
}
}
/**
* Note: If the mailer is accessed prior to this controller action, this will possibly test the wrong mailer
*
* @Request({"option": "array"}, csrf=true)
*/
public function emailAction($option = [])
{
try {
$config = Arr::merge(App::module('system/mail')->config(), $option);
$response['success'] = (bool) App::mailer()->create(__('Test email!'), __('Testemail'), $config['from_address'])->send();
$response['message'] = $response['success'] ? __('Mail successfully sent!') : __('Mail delivery failed!');
} catch (\Exception $e) {
$response = ['success' => false, 'message' => sprintf(__('Mail delivery failed! (%s)'), $e->getMessage())];
}
return $response;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Pagekit\Mail\Controller;
use Pagekit\Application as App;
use Pagekit\Util\Arr;
/**
* @Access("system: access settings", admin=true)
*/
class MailController
{
/**
* @Request({"option": "array"}, csrf=true)
*/
public function smtpAction($option = [])
{
try {
App::mailer()->testSmtpConnection($option['host'], $option['port'], $option['username'], $option['password'], $option['encryption']);
return ['success' => true, 'message' => __('Connection established!')];
} catch (\Exception $e) {
return ['success' => false, 'message' => sprintf(__('Connection not established! (%s)'), $e->getMessage())];
}
}
/**
* Note: If the mailer is accessed prior to this controller action, this will possibly test the wrong mailer
*
* @Request({"option": "array"}, csrf=true)
*/
public function emailAction($option = [])
{
try {
$config = Arr::merge(App::module('system/mail')->config(), $option);
$response['success'] = (bool) App::mailer()->create(__('Test email!'), __('Testemail'), $config['from_address'])->send();
$response['message'] = $response['success'] ? __('Mail successfully sent!') : __('Mail delivery failed!');
} catch (\Exception $e) {
$response = ['success' => false, 'message' => sprintf(__('Mail delivery failed! (%s)'), $e->getMessage())];
}
return $response;
}
}
Function Calls
None |
Stats
MD5 | 2bae6dfb94527da23d9387f11ef9c26e |
Eval Count | 0 |
Decode Time | 80 ms |