theme.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. if (!defined('ABSPATH')) exit;
  3. ?><html>
  4. <head>
  5. <style>
  6. body {
  7. font-family: sans-serif;
  8. font-size: 12px;
  9. background-color: #ffffff;
  10. }
  11. </style>
  12. </head>
  13. <body bgcolor="#ffffff">
  14. <h1>Your awesome title</h1>
  15. <p>
  16. Hi {name} (but you should remove that if you're not collecting subscriber names),
  17. </p>
  18. <p>
  19. here the foreword of your shiny new newsletter. Most of the times a simple layout is the best.
  20. </p>
  21. <h2>There is more for you!</h2>
  22. <p>Still not secure to sign up for our premium service? Even with a standard service plan you'll receive our t-shirt!</p>
  23. <p>
  24. Goodbye!
  25. </p>
  26. <?php include WP_PLUGIN_DIR . '/newsletter/emails/themes/default/social_main.php'; ?>
  27. <hr>
  28. <p>
  29. To cancel <a href="{unsubscription_url}">click here</a>, to edit your subscription
  30. <a href="{profile_url}">click here</a>.
  31. </p>
  32. <p>
  33. <?php echo $theme_options['main_footer_contact'] ?>
  34. </p>
  35. <p>
  36. <?php echo $theme_options['main_footer_legal'] ?>
  37. </p>
  38. </body>
  39. </html>