view-retarget.php 939 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. if (!defined('ABSPATH')) exit;
  3. $email_id = (int) $_GET['id'];
  4. $module = NewsletterStatistics::instance();
  5. $email = $module->get_email($email_id);
  6. ?>
  7. <div class="wrap" id="tnp-wrap">
  8. <?php include NEWSLETTER_DIR . '/tnp-header.php' ?>
  9. <div id="tnp-heading">
  10. <h2>Retargeting for "<?php echo htmlspecialchars($email->subject); ?>"</h2>
  11. </div>
  12. <div id="tnp-body" style="min-width: 500px">
  13. <p><a href="admin.php?page=newsletter_statistics_view&id=<?php echo $email->id ?>" class="button-primary">Back to the dashboard</a></p>
  14. <a href="https://www.thenewsletterplugin.com/premium?utm_source=plugin&utm_medium=link&utm_content=retarget&utm_campaign=newsletter-reports" target="_blank">
  15. <img style="width: 100%" src="<?php echo plugins_url('newsletter') ?>/statistics/images/retarget.png">
  16. </a>
  17. </div>
  18. <?php include NEWSLETTER_DIR . '/tnp-footer.php' ?>
  19. </div>