deactivationSurvey
7 years ago
emails
6 years ago
form
6 years ago
newsletter
6 years ago
settings
6 years ago
subscribers
6 years ago
woocommerce
6 years ago
automatic_emails.html
6 years ago
blank.html
8 years ago
dynamicSegments.html
6 years ago
experimental-features.html
7 years ago
forms.html
6 years ago
help.html
7 years ago
index.html
8 years ago
index.php
9 years ago
invalidkey.html
6 years ago
layout.html
6 years ago
mp2migration.html
7 years ago
mss_pitch_translations.html
6 years ago
newsletters.html
6 years ago
premium.html
6 years ago
revenue_tracking_permission.html
6 years ago
segments.html
6 years ago
settings.html
6 years ago
update.html
7 years ago
welcome_wizard.html
6 years ago
woocommerce_list_import.html
7 years ago
settings.html
302 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 | <% if is_woocommerce_active %> |
| 22 | <a class="nav-tab" href="#woocommerce" data-automation-id="woocommerce_settings_tab"><%= __('WooCommerce') %></a> |
| 23 | <% endif %> |
| 24 | <a class="nav-tab" href="#advanced" data-automation-id="settings-advanced-tab"><%= __('Advanced') %></a> |
| 25 | <a class="nav-tab" href="#premium" data-automation-id="activation_settings_tab"><%= __('Key Activation') %></a> |
| 26 | </h2> |
| 27 | |
| 28 | <!-- sending method --> |
| 29 | <div data-tab="mta" class="mailpoet_tab_panel"> |
| 30 | <% include 'settings/mta.html' %> |
| 31 | </div> |
| 32 | |
| 33 | <!-- basics --> |
| 34 | <div data-tab="basics" class="mailpoet_tab_panel"> |
| 35 | <% include 'settings/basics.html' %> |
| 36 | </div> |
| 37 | |
| 38 | <!-- sign-up confirmation --> |
| 39 | <div data-tab="signup" class="mailpoet_tab_panel"> |
| 40 | <% include 'settings/signup.html' %> |
| 41 | </div> |
| 42 | |
| 43 | <% if is_woocommerce_active %> |
| 44 | <!-- woocommerce --> |
| 45 | <div data-tab="woocommerce" class="mailpoet_tab_panel"> |
| 46 | <% include 'settings/woocommerce.html' %> |
| 47 | </div> |
| 48 | <% endif %> |
| 49 | |
| 50 | <!-- advanced --> |
| 51 | <div data-tab="advanced" class="mailpoet_tab_panel"> |
| 52 | <% include 'settings/advanced.html' %> |
| 53 | </div> |
| 54 | |
| 55 | <!-- premium --> |
| 56 | <div data-tab="premium" class="mailpoet_tab_panel"> |
| 57 | <% include 'settings/premium.html' %> |
| 58 | </div> |
| 59 | |
| 60 | <p class="submit mailpoet_settings_submit" style="display:none;"> |
| 61 | <input |
| 62 | type="submit" |
| 63 | class="button button-primary" |
| 64 | name="submit" |
| 65 | data-automation-id="settings-submit-button" |
| 66 | value="<%= __('Save settings') %>" |
| 67 | /> |
| 68 | </p> |
| 69 | </form> |
| 70 | </div> |
| 71 | |
| 72 | <script type="text/javascript"> |
| 73 | jQuery(function($) { |
| 74 | // on dom loaded |
| 75 | $(function() { |
| 76 | // on form submission |
| 77 | $('#mailpoet_settings_form').on('submit', function() { |
| 78 | var errorFound = false; |
| 79 | // Check if filled emails are valid |
| 80 | var invalidEmails = $.map($('#mailpoet_settings_form')[0].elements, function(el) { |
| 81 | return el.type === 'email' && el.value && !window.mailpoet_email_regex.test(el.value) ? el.value : null; |
| 82 | }).filter(function(val) { return !!val; }); |
| 83 | if (invalidEmails.length) { |
| 84 | MailPoet.Notice.error( |
| 85 | "<%= __('Invalid email addresses: ') | escape('js') %>" + invalidEmails.join(', '), |
| 86 | { scroll: true } |
| 87 | ); |
| 88 | errorFound = true; |
| 89 | } |
| 90 | // if reCAPTCHA is enabled but keys are emty, show error |
| 91 | var enabled = $('input[name="captcha[type]"]:checked').val() == 'recaptcha', |
| 92 | site_key = $('input[name="captcha[recaptcha_site_token]"]').val().trim(), |
| 93 | secret_key = $('input[name="captcha[recaptcha_secret_token]"]').val().trim(); |
| 94 | if (enabled && (site_key == '' || secret_key == '')) { |
| 95 | $('#settings_recaptcha_tokens_error').show(); |
| 96 | window.location.href = '#advanced'; |
| 97 | errorFound = true; |
| 98 | } else { |
| 99 | $('#settings_recaptcha_tokens_error').hide(); |
| 100 | } |
| 101 | // if new subscriber notification is enabled but sender is empty, show error |
| 102 | var notifications_enabled = $('input[name="subscriber_email_notification[enabled]"]:checked').val(), |
| 103 | address = $('input[name="subscriber_email_notification[address]"]').val().trim(); |
| 104 | if (notifications_enabled && address == '') { |
| 105 | $('#settings_subscriber_email_notification_error').show(); |
| 106 | window.location.href = '#basics'; |
| 107 | errorFound = true; |
| 108 | } else { |
| 109 | $('#settings_subscriber_email_notification_error').hide(); |
| 110 | } |
| 111 | var stats_notifications_enabled = $('input[name="stats_notifications[enabled]"]:checked').val(), |
| 112 | stats_notifications_address = $('input[name="stats_notifications[address]"]').val().trim(); |
| 113 | if (stats_notifications_enabled && stats_notifications_address == '') { |
| 114 | $('#settings_stats_notifications_error').show(); |
| 115 | window.location.href = '#basics'; |
| 116 | errorFound = true; |
| 117 | } else { |
| 118 | $('#settings_stats_notifications_error').hide(); |
| 119 | } |
| 120 | |
| 121 | <% if is_woocommerce_active %> |
| 122 | // if WooCommerce opt-in on checkout is enabled but the checkbox message is empty, show an error |
| 123 | var woocommerce_optin_on_checkout_enabled = $('input[name="woocommerce[optin_on_checkout][enabled]"]:checked').val(), |
| 124 | woocommerce_optin_on_checkout_message = $('input[name="woocommerce[optin_on_checkout][message]"]').val().trim(); |
| 125 | if (woocommerce_optin_on_checkout_enabled && woocommerce_optin_on_checkout_message == '') { |
| 126 | $('#settings_woocommerce_optin_on_checkout_error').show(); |
| 127 | window.location.href = '#woocommerce'; |
| 128 | errorFound = true; |
| 129 | } else { |
| 130 | $('#settings_woocommerce_optin_on_checkout_error').hide(); |
| 131 | } |
| 132 | <% endif %> |
| 133 | // stop processing if an error was found |
| 134 | if (errorFound) { |
| 135 | return false; |
| 136 | } |
| 137 | // if we're setting up a sending method, try to activate it |
| 138 | if ($('.mailpoet_mta_setup_save').is(':visible')) { |
| 139 | $('.mailpoet_mta_setup_save').trigger('click'); |
| 140 | } |
| 141 | var mailpoet_premium_key = $('#mailpoet_premium_key').val(); |
| 142 | // sync mss key with premium key |
| 143 | $('#mailpoet_api_key').val(mailpoet_premium_key); |
| 144 | if (mailpoet_premium_key.length > 0) { |
| 145 | $('#mailpoet_premium_key_verify').trigger('click', false); |
| 146 | } |
| 147 | saveSettings(); |
| 148 | return false; |
| 149 | }); |
| 150 | |
| 151 | function saveSettings() { |
| 152 | // serialize form data |
| 153 | var settings_data = $('#mailpoet_settings_form').mailpoetSerializeObject(); |
| 154 | |
| 155 | // show loading screen |
| 156 | MailPoet.Modal.loading(true); |
| 157 | |
| 158 | MailPoet.Ajax.post({ |
| 159 | api_version: window.mailpoet_api_version, |
| 160 | endpoint: 'settings', |
| 161 | action: 'set', |
| 162 | data: settings_data |
| 163 | }).always(function() { |
| 164 | MailPoet.Modal.loading(false); |
| 165 | }).done(function(response) { |
| 166 | MailPoet.Notice.success( |
| 167 | "<%= __('Settings saved') | escape('js') %>", |
| 168 | { scroll: true } |
| 169 | ); |
| 170 | MailPoet.trackEvent( |
| 171 | 'User has saved Settings', |
| 172 | { |
| 173 | 'MailPoet Free version': window.mailpoet_version, |
| 174 | 'Sending method type': settings_data.mta_group || null, |
| 175 | 'Sending frequency (emails)': settings_data.mta_group != 'mailpoet' && settings_data.mta && settings_data.mta.frequency && settings_data.mta.frequency.emails, |
| 176 | 'Sending frequency (interval)': settings_data.mta_group != 'mailpoet' && settings_data.mta && settings_data.mta.frequency && settings_data.mta.frequency.interval, |
| 177 | 'Sending provider': settings_data.mta_group == 'smtp' && settings_data.smtp_provider, |
| 178 | 'Sign-up confirmation enabled': (settings_data.signup_confirmation && settings_data.signup_confirmation.enabled == true), |
| 179 | 'Bounce email is present': (settings_data.bounce && settings_data.bounce.address != ""), |
| 180 | <% if is_woocommerce_active %> |
| 181 | 'WooCommerce email customizer enabled': (settings_data.woocommerce && settings_data.woocommerce.use_mailpoet_editor), |
| 182 | <% endif %> |
| 183 | 'Newsletter task scheduler method': (settings_data.cron_trigger && settings_data.cron_trigger.method) |
| 184 | } |
| 185 | ); |
| 186 | }).fail(function(response) { |
| 187 | if (response.errors.length > 0) { |
| 188 | MailPoet.Notice.error( |
| 189 | response.errors.map(function(error) { return error.message; }), |
| 190 | { scroll: true } |
| 191 | ); |
| 192 | } |
| 193 | }); |
| 194 | } |
| 195 | |
| 196 | // setup toggle checkboxes |
| 197 | function toggleContent() { |
| 198 | $('#'+$(this).data('toggle'))[ |
| 199 | ($(this).is(':checked')) |
| 200 | ? 'show' |
| 201 | : 'hide' |
| 202 | ](); |
| 203 | } |
| 204 | |
| 205 | $(document).on('click', 'input[data-toggle]', toggleContent); |
| 206 | $('input[data-toggle]').each(toggleContent); |
| 207 | |
| 208 | function toggleReCaptchaSettings() { |
| 209 | if ($('input[name="captcha[type]"]:checked').val() == 'recaptcha') { |
| 210 | $('#settings_recaptcha_tokens').show(); |
| 211 | } else { |
| 212 | $('#settings_recaptcha_tokens').hide(); |
| 213 | } |
| 214 | } |
| 215 | $('input[name="captcha[type]"]').on('click', toggleReCaptchaSettings); |
| 216 | toggleReCaptchaSettings(); |
| 217 | $('#settings_recaptcha_tokens_error').hide(); |
| 218 | |
| 219 | $('#settings_subscriber_email_notification_error').hide(); |
| 220 | $('#settings_stats_notifications_error').hide(); |
| 221 | |
| 222 | <% if is_woocommerce_active %> |
| 223 | $('#settings_woocommerce_optin_on_checkout_error').hide(); |
| 224 | |
| 225 | $('.mailpoet_woocommerce_editor_button').on('click', function() { |
| 226 | var emailId = "<%= settings.woocommerce.transactional_email_id %>"; |
| 227 | if (!emailId) { |
| 228 | MailPoet.Ajax.post({ |
| 229 | api_version: window.mailpoet_api_version, |
| 230 | endpoint: 'settings', |
| 231 | action: 'set', |
| 232 | data: { |
| 233 | 'woocommerce.use_mailpoet_editor': 1, |
| 234 | }, |
| 235 | }).done(function (response) { |
| 236 | emailId = response.data.woocommerce.transactional_email_id; |
| 237 | window.location.href = '?page=mailpoet-newsletter-editor&id=' + emailId; |
| 238 | }).fail(function (response) { |
| 239 | MailPoet.Notice.showApiErrorNotice(response, { scroll: true }); |
| 240 | }); |
| 241 | } else { |
| 242 | window.location.href = '?page=mailpoet-newsletter-editor&id=' + emailId; |
| 243 | } |
| 244 | }); |
| 245 | <% endif %> |
| 246 | |
| 247 | function toggleLinuxCronSettings() { |
| 248 | if ($('input[name="cron_trigger[method]"]:checked').val() === '<%= cron_trigger.linux_cron %>') { |
| 249 | $('#settings_linux_cron').show(); |
| 250 | } else { |
| 251 | $('#settings_linux_cron').hide(); |
| 252 | } |
| 253 | } |
| 254 | $('input[name="cron_trigger[method]"]').on('click', toggleLinuxCronSettings); |
| 255 | toggleLinuxCronSettings(); |
| 256 | |
| 257 | // page preview |
| 258 | $('.mailpoet_page_preview').on('click', function() { |
| 259 | var selection = $(this).siblings('.mailpoet_page_selection'); |
| 260 | |
| 261 | if (selection.length > 0) { |
| 262 | $(this).attr('href', $(selection).find('option[value="'+$(selection).val()+'"]').data('preview-url')); |
| 263 | $(this).attr('target', '_blank'); |
| 264 | } else { |
| 265 | $(this).attr('href', 'javascript:;'); |
| 266 | $(this).removeAttr('target'); |
| 267 | } |
| 268 | }); |
| 269 | }); |
| 270 | }); |
| 271 | <% set newUser = (is_new_user == true) ? 'true' : 'false' %> |
| 272 | <% autoescape 'js' %> |
| 273 | var mailpoet_is_new_user = <%= newUser %>; |
| 274 | var mailpoet_settings_sender_name = "<%= settings.sender.name %>"; |
| 275 | var mailpoet_settings_sender_adddress = "<%= settings.sender.address %>"; |
| 276 | var mailpoet_settings_reply_to_name = "<%= settings.reply_to.name %>"; |
| 277 | var mailpoet_settings_reply_to_address = "<%= settings.reply_to.address %>"; |
| 278 | var mailpoet_settings_signup_confirmation_name = "<%= settings.signup_confirmation.from.name %>"; |
| 279 | var mailpoet_settings_signup_confirmation_address = "<%= settings.signup_confirmation.from.address %>"; |
| 280 | var mailpoet_installed_at = '<%= settings.installed_at %>'; |
| 281 | var mailpoet_mss_active = <%= json_encode(settings.mta_group == 'mailpoet') %>; |
| 282 | <% endautoescape %> |
| 283 | var mailpoet_beacon_articles = [ |
| 284 | '57f71d49c697911f2d323486', |
| 285 | '57fb0e1d9033600277a681ca', |
| 286 | '57f49a929033602e61d4b9f4', |
| 287 | '57fb134cc697911f2d323e3b', |
| 288 | ]; |
| 289 | </script> |
| 290 | <% endblock %> |
| 291 | <% block translations %> |
| 292 | <%= localize({ |
| 293 | 'reinstallConfirmation': __('Are you sure? All of your MailPoet data will be permanently erased (newsletters, statistics, subscribers, etc.).'), |
| 294 | 'announcementHeader': __('Get notified when someone subscribes'), |
| 295 | 'announcementParagraph1': __('It’s been a popular feature request from our users, we hope you get lots of emails about all your new subscribers!'), |
| 296 | 'announcementParagraph2': __('(You can turn this feature off if it’s too many emails.)'), |
| 297 | 'yourName': __('Your name'), |
| 298 | 'from': __('From'), |
| 299 | 'replyTo': __('Reply-to'), |
| 300 | }) %> |
| 301 | <% endblock %> |
| 302 |