| Server IP : 46.105.57.169 / Your IP : 216.73.216.144 Web Server : Apache System : Linux webd003.cluster120.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : maitricfuz ( 93378) PHP Version : 8.4.10 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/maitricfuz/www/saint-martin-lg/plugins/convertformsapps/email/ |
Upload File : |
<?php
/**
* @package Convert Forms
* @version 5.1.6 Free
*
* @author Tassos Marinos <info@tassos.gr>
* @link https://www.tassos.gr
* @copyright Copyright © 2024 Tassos All Rights Reserved
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
*/
defined('_JEXEC') or die('Restricted access');
use Joomla\CMS\Factory;
use ConvertForms\Tasks\App;
use NRFramework\Email;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Plugin\PluginHelper;
use ConvertForms\Tasks\LimitAppUsage;
use ConvertForms\Helper;
use Joomla\CMS\HTML\HTMLHelper;
class plgConvertFormsAppsEmail extends App
{
// This app can only be used once in the Free version.
use LimitAppUsage;
/**
* To be able to use this app, the Mail option in the Global Configuration page must be enabled.
*
* @return mixed, null when the requirement is met, array otherwise.
*/
protected function reqMailOption()
{
if (!Factory::getConfig()->get('mailonline'))
{
return [
'text' => $this->lang('SENDING_OFF')
];
}
}
/**
* The trigger that sends the email
*
* @return void
*/
public function actionEmail()
{
// Disable cloaking of email addresses
if (PluginHelper::isEnabled('content', 'emailcloak'))
{
$this->options['body'] .= '{emailcloak=off}';
}
// Trigger Content Plugins
$this->options['body'] = HTMLHelper::_('content.prepare', $this->options['body'], null, 'convertforms.email');
// Support if shortcodes. For some reason, if run this after content.prepare, it fails.
Helper::parseIfShortcode($this->options['body'], $this->payload['submission']);
$mailer = new Email($this->options);
if (!$mailer->send())
{
$this->setError($mailer->error);
}
}
/**
* Get a list with the fields needed to setup the app's event.
*
* @return array
*/
public function getActionEmailSetupFields()
{
return [
[
'name' => Text::_('COM_CONVERTFORMS_APP_SETUP_ACTION'),
'fields' => [
$this->field('subject', ['value' => 'New Submission #{submission.id}']),
$this->field('recipient', ['value' => '{site.email}']),
$this->field('from_name', ['value' => '{site.name}']),
$this->field('from_email', ['value' => '{site.email}']),
$this->field('reply_to', ['required' => false]),
$this->field('reply_to_name', ['required' => false]),
$this->field('cc', ['required' => false]),
$this->field('bcc', ['required' => false]),
$this->field('body', ['type' => 'editor', 'value' => '{all_fields}']),
$this->field('css', ['type' => 'textarea', 'required' => false]),
$this->field('attachments', ['required' => false])
]
]
];
}
/**
* Get the URL of the documentation page
*
* @return string
*/
public function getDocsURL()
{
return 'https://www.tassos.gr/joomla-extensions/convert-forms/docs/working-with-tasks#create-your-first-task';
}
}