deactivationSurvey
7 years ago
emails
7 years ago
form
7 years ago
newsletter
7 years ago
settings
7 years ago
subscribers
7 years ago
blank.html
8 years ago
forms.html
7 years ago
help.html
7 years ago
index.html
8 years ago
index.php
9 years ago
invalidkey.html
8 years ago
layout.html
7 years ago
limit.html
7 years ago
mp2migration.html
7 years ago
newsletters.html
7 years ago
premium.html
7 years ago
segments.html
7 years ago
settings.html
7 years ago
update.html
7 years ago
welcome_wizard.html
7 years ago
settings.html
239 lines
| 1 | <% extends 'layout.html' %> |
| 2 | |
| 3 | <% block content %> |
| 4 | <div id="mailpoet_settings"> |
| 5 | |
| 6 | <h1 class="title"><%= __('Settings') %></h1> |
| 7 | |
| 8 | <!-- settings form --> |
| 9 | <form |
| 10 | id="mailpoet_settings_form" |
| 11 | name="mailpoet_settings_form" |
| 12 | class="mailpoet_form" |
| 13 | autocomplete="off" |
| 14 | novalidate |
| 15 | > |
| 16 | <!-- tabs --> |
| 17 | <h2 class="nav-tab-wrapper" id="mailpoet_settings_tabs"> |
| 18 | <a class="nav-tab" href="#basics" data-automation-id="basic_settings_tab"><%= __('Basics') %></a> |
| 19 | <a class="nav-tab" href="#signup" data-automation-id="signup_settings_tab"><%= __('Sign-up Confirmation') %></a> |
| 20 | <a class="nav-tab" href="#mta" data-automation-id="send_with_settings_tab"><%= __('Send With...') %></a> |
| 21 | <a class="nav-tab" href="#advanced" data-automation-id="settings-advanced-tab"><%= __('Advanced') %></a> |
| 22 | <a class="nav-tab" href="#premium" data-automation-id="activation_settings_tab"><%= __('Key Activation') %></a> |
| 23 | </h2> |
| 24 | |
| 25 | <!-- sending method --> |
| 26 | <div data-tab="mta" class="mailpoet_tab_panel"> |
| 27 | <% include 'settings/mta.html' %> |
| 28 | </div> |
| 29 | |
| 30 | <!-- basics --> |
| 31 | <div data-tab="basics" class="mailpoet_tab_panel"> |
| 32 | <% include 'settings/basics.html' %> |
| 33 | </div> |
| 34 | |
| 35 | <!-- sign-up confirmation --> |
| 36 | <div data-tab="signup" class="mailpoet_tab_panel"> |
| 37 | <% include 'settings/signup.html' %> |
| 38 | </div> |
| 39 | |
| 40 | <!-- advanced --> |
| 41 | <div data-tab="advanced" class="mailpoet_tab_panel"> |
| 42 | <% include 'settings/advanced.html' %> |
| 43 | </div> |
| 44 | |
| 45 | <!-- premium --> |
| 46 | <div data-tab="premium" class="mailpoet_tab_panel"> |
| 47 | <% include 'settings/premium.html' %> |
| 48 | </div> |
| 49 | |
| 50 | <p class="submit mailpoet_settings_submit" style="display:none;"> |
| 51 | <input |
| 52 | type="submit" |
| 53 | class="button button-primary" |
| 54 | name="submit" |
| 55 | data-automation-id="settings-submit-button" |
| 56 | value="<%= __('Save settings') %>" |
| 57 | /> |
| 58 | </p> |
| 59 | </form> |
| 60 | </div> |
| 61 | |
| 62 | <script type="text/javascript"> |
| 63 | jQuery(function($) { |
| 64 | // on dom loaded |
| 65 | $(function() { |
| 66 | // on form submission |
| 67 | $('#mailpoet_settings_form').on('submit', function() { |
| 68 | var errorFound = false; |
| 69 | // Check if filled emails are valid |
| 70 | var invalidEmails = $.map($('#mailpoet_settings_form')[0].elements, function(el) { |
| 71 | return el.type === 'email' && el.value && !window.mailpoet_email_regex.test(el.value) ? el.value : null; |
| 72 | }).filter(function(val) { return !!val; }); |
| 73 | if (invalidEmails.length) { |
| 74 | MailPoet.Notice.error( |
| 75 | "<%= __('Invalid email addresses: ') | escape('js') %>" + invalidEmails.join(', '), |
| 76 | { scroll: true } |
| 77 | ); |
| 78 | errorFound = true; |
| 79 | } |
| 80 | // if reCAPTCHA is enabled but keys are emty, show error |
| 81 | var enabled = $('input[name="re_captcha[enabled]"]:checked').val(), |
| 82 | site_key = $('input[name="re_captcha[site_token]"]').val().trim(), |
| 83 | secret_key = $('input[name="re_captcha[secret_token]"]').val().trim(); |
| 84 | if (enabled && (site_key == '' || secret_key == '')) { |
| 85 | $('#settings_re_captcha_tokens_error').show(); |
| 86 | window.location.href = '#advanced'; |
| 87 | errorFound = true; |
| 88 | } else { |
| 89 | $('#settings_re_captcha_tokens_error').hide(); |
| 90 | } |
| 91 | // if new subscriber notification is enabled but sender is empty, show error |
| 92 | var notifications_enabled = $('input[name="subscriber_email_notification[enabled]"]:checked').val(), |
| 93 | address = $('input[name="subscriber_email_notification[address]"]').val().trim(); |
| 94 | if (notifications_enabled && address == '') { |
| 95 | $('#settings_subscriber_email_notification_error').show(); |
| 96 | window.location.href = '#basics'; |
| 97 | errorFound = true; |
| 98 | } else { |
| 99 | $('#settings_subscriber_email_notification_error').hide(); |
| 100 | } |
| 101 | var stats_notifications_enabled = $('input[name="stats_notifications[enabled]"]:checked').val(), |
| 102 | stats_notifications_address = $('input[name="stats_notifications[address]"]').val().trim(); |
| 103 | if (stats_notifications_enabled && stats_notifications_address == '') { |
| 104 | $('#settings_stats_notifications_error').show(); |
| 105 | window.location.href = '#basics'; |
| 106 | errorFound = true; |
| 107 | } else { |
| 108 | $('#settings_stats_notifications_error').hide(); |
| 109 | } |
| 110 | // stop processing if an error was found |
| 111 | if (errorFound) { |
| 112 | return false; |
| 113 | } |
| 114 | // if we're setting up a sending method, try to activate it |
| 115 | if ($('.mailpoet_mta_setup_save').is(':visible')) { |
| 116 | $('.mailpoet_mta_setup_save').trigger('click'); |
| 117 | } |
| 118 | var mailpoet_premium_key = $('#mailpoet_premium_key').val(); |
| 119 | // sync mss key with premium key |
| 120 | $('#mailpoet_api_key').val(mailpoet_premium_key); |
| 121 | if (mailpoet_premium_key.length > 0) { |
| 122 | $('#mailpoet_premium_key_verify').trigger('click', false); |
| 123 | } |
| 124 | saveSettings(); |
| 125 | return false; |
| 126 | }); |
| 127 | |
| 128 | function saveSettings() { |
| 129 | // serialize form data |
| 130 | var settings_data = $('#mailpoet_settings_form').mailpoetSerializeObject(); |
| 131 | |
| 132 | // show loading screen |
| 133 | MailPoet.Modal.loading(true); |
| 134 | |
| 135 | MailPoet.Ajax.post({ |
| 136 | api_version: window.mailpoet_api_version, |
| 137 | endpoint: 'settings', |
| 138 | action: 'set', |
| 139 | data: settings_data |
| 140 | }).always(function() { |
| 141 | MailPoet.Modal.loading(false); |
| 142 | }).done(function(response) { |
| 143 | MailPoet.Notice.success( |
| 144 | "<%= __('Settings saved') | escape('js') %>", |
| 145 | { scroll: true } |
| 146 | ); |
| 147 | MailPoet.trackEvent( |
| 148 | 'User has saved Settings', |
| 149 | { |
| 150 | 'MailPoet Free version': window.mailpoet_version, |
| 151 | 'Sending method type': settings_data.mta_group || null, |
| 152 | 'Sending frequency (emails)': settings_data.mta_group != 'mailpoet' && settings_data.mta && settings_data.mta.frequency && settings_data.mta.frequency.emails, |
| 153 | 'Sending frequency (interval)': settings_data.mta_group != 'mailpoet' && settings_data.mta && settings_data.mta.frequency && settings_data.mta.frequency.interval, |
| 154 | 'Sending provider': settings_data.mta_group == 'smtp' && settings_data.smtp_provider, |
| 155 | 'Sign-up confirmation enabled': (settings_data.signup_confirmation && settings_data.signup_confirmation.enabled == true), |
| 156 | 'Bounce email is present': (settings_data.bounce && settings_data.bounce.address != ""), |
| 157 | 'Newsletter task scheduler method': (settings_data.cron_trigger && settings_data.cron_trigger.method) |
| 158 | } |
| 159 | ); |
| 160 | }).fail(function(response) { |
| 161 | if (response.errors.length > 0) { |
| 162 | MailPoet.Notice.error( |
| 163 | response.errors.map(function(error) { return error.message; }), |
| 164 | { scroll: true } |
| 165 | ); |
| 166 | } |
| 167 | }); |
| 168 | } |
| 169 | |
| 170 | // setup toggle checkboxes |
| 171 | function toggleContent() { |
| 172 | $('#'+$(this).data('toggle'))[ |
| 173 | ($(this).is(':checked')) |
| 174 | ? 'show' |
| 175 | : 'hide' |
| 176 | ](); |
| 177 | } |
| 178 | |
| 179 | $(document).on('click', 'input[data-toggle]', toggleContent); |
| 180 | $('input[data-toggle]').each(toggleContent); |
| 181 | |
| 182 | function toggleReCaptchaSettings() { |
| 183 | if ($('input[name="re_captcha[enabled]"]:checked').val()) { |
| 184 | $('#settings_re_captcha_tokens').show(); |
| 185 | } else { |
| 186 | $('#settings_re_captcha_tokens').hide(); |
| 187 | } |
| 188 | } |
| 189 | $('input[name="re_captcha[enabled]"]').on('click', toggleReCaptchaSettings); |
| 190 | toggleReCaptchaSettings(); |
| 191 | $('#settings_re_captcha_tokens_error').hide(); |
| 192 | |
| 193 | $('#settings_subscriber_email_notification_error').hide(); |
| 194 | $('#settings_stats_notifications_error').hide(); |
| 195 | |
| 196 | function toggleLinuxCronSettings() { |
| 197 | if ($('input[name="cron_trigger[method]"]:checked').val() === '<%= cron_trigger.linux_cron %>') { |
| 198 | $('#settings_linux_cron').show(); |
| 199 | } else { |
| 200 | $('#settings_linux_cron').hide(); |
| 201 | } |
| 202 | } |
| 203 | $('input[name="cron_trigger[method]"]').on('click', toggleLinuxCronSettings); |
| 204 | toggleLinuxCronSettings(); |
| 205 | |
| 206 | // page preview |
| 207 | $('.mailpoet_page_preview').on('click', function() { |
| 208 | var selection = $(this).siblings('.mailpoet_page_selection'); |
| 209 | |
| 210 | if (selection.length > 0) { |
| 211 | $(this).attr('href', $(selection).find('option[value="'+$(selection).val()+'"]').data('preview-url')); |
| 212 | $(this).attr('target', '_blank'); |
| 213 | } else { |
| 214 | $(this).attr('href', 'javascript:;'); |
| 215 | $(this).removeAttr('target'); |
| 216 | } |
| 217 | }); |
| 218 | }); |
| 219 | }); |
| 220 | <% set newUser = (is_new_user == true) ? 'true' : 'false' %> |
| 221 | var mailpoet_is_new_user = <%= newUser %>; |
| 222 | var mailpoet_settings_sender_name = "<%= settings.sender.name %>"; |
| 223 | var mailpoet_settings_sender_adddress = "<%= settings.sender.address %>"; |
| 224 | var mailpoet_settings_reply_to_name = "<%= settings.reply_to.name %>"; |
| 225 | var mailpoet_settings_reply_to_address = "<%= settings.reply_to.address %>"; |
| 226 | </script> |
| 227 | <% endblock %> |
| 228 | <% block translations %> |
| 229 | <%= localize({ |
| 230 | 'reinstallConfirmation': __('Are you sure? All of your MailPoet data will be permanently erased (newsletters, statistics, subscribers, etc.).'), |
| 231 | 'announcementHeader': __('Get notified when someone subscribes'), |
| 232 | 'announcementParagraph1': __('It’s been a popular feature request from our users, we hope you get lots of emails about all your new subscribers!'), |
| 233 | 'announcementParagraph2': __('(You can turn this feature off if it’s too many emails.)'), |
| 234 | 'yourName': __('Your name'), |
| 235 | 'from': __('From'), |
| 236 | 'replyTo': __('Reply-to'), |
| 237 | }) %> |
| 238 | <% endblock %> |
| 239 |