| Server IP : 130.225.57.55 / Your IP : 216.73.216.60 Web Server : Apache System : Linux wp-vhost07 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /srv/www/reco2st.eu/https/wp-content/plugins/newsletter/main/ |
Upload File : |
<?php
/** @var NewsletterControls $controls */
defined('ABSPATH') || exit;
$channel = new stdClass();
$channel->id = 1;
$channel->data = [
'name' => 'Weekly wellness tips',
'track' => 1,
'frequency' => 'weekly',
'day_1' => 1,
];
$email = new stdClass();
$email->id = 1;
$email->status = 'new';
$email->subject = 'Week 3 Welness Tips';
$email->send_on = time() - WEEK_IN_SECONDS * 4;
TNP_Composer::prepare_controls($controls, $email);
?>
<div class="wrap" id="tnp-wrap">
<?php include NEWSLETTER_ADMIN_HEADER ?>
<div id="tnp-heading">
<?php include __DIR__ . '/automatednav.php' ?>
</div>
<div id="tnp-body" class="tnp-automated-edit">
<?php $controls->show(); ?>
<div class="tnp-automated-edit">
<form method="post" id="tnpc-form" action="" onsubmit="tnpc_save(this); return true;">
<?php $controls->init(); ?>
<?php $controls->composer_fields_v2() ?>
</form>
<?php $controls->composer_load_v2(true, false, 'automated') ?>
</div>
</div>
</div>