PluginProbe ʕ •ᴥ•ʔ
Everest Forms – Contact Form, Payment Form, Quiz, Survey & Custom Form Builder with AI / 3.5.3
Everest Forms – Contact Form, Payment Form, Quiz, Survey & Custom Form Builder with AI v3.5.3
3.6.0 3.5.3 3.5.2 3.5.1 3.5.0 3.4.8 3.4.7 3.4.6 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.5.1 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.5.0 1.5.1 1.5.10 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.6.1 1.6.7 1.7.0 1.7.0.1 1.7.0.2 1.7.0.3 1.7.1 1.7.2 1.7.2.1 1.7.2.2 1.7.3 1.7.4 1.7.5 1.7.5.1 1.7.5.2 1.7.6 1.7.7 1.7.7.1 1.7.7.2 1.7.8 1.7.9 1.8.0 1.8.0.1 1.8.1 1.8.2 1.8.2.1 1.8.2.2 1.8.2.3 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.9.0 1.9.0.1 1.9.1 1.9.2 1.9.3 1.9.4 1.9.4.1 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.0.1 2.0.1 2.0.2 2.0.3 2.0.3.1 2.0.4 2.0.4.1 2.0.5 2.0.6 2.0.7 2.0.8 2.0.8.1 2.0.9 3.0.0 3.0.0.1 3.0.1 3.0.2 3.0.3 3.0.3.1 3.0.4 3.0.4.1 3.0.4.2 3.0.5 3.0.5.1 3.0.5.2 3.0.6 3.0.6.1 3.0.7.1 3.0.8 3.0.8.1 3.0.9 3.0.9.1 3.0.9.2 3.0.9.3 3.0.9.4 3.0.9.5 3.1.0 3.1.1 3.1.2 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.2.5 3.2.6 3.3.0 3.4.0 3.4.1 3.4.2 3.4.2.1 3.4.3 3.4.4 3.4.5 trunk 1.0 1.0.1 1.0.2 1.0.3
everest-forms / includes / admin / views / html-notice-email-failed-notice.php
everest-forms / includes / admin / views Last commit date
html-admin-header-skeleton.php 2 months ago html-admin-page-addons.php 1 year ago html-admin-page-builder.php 5 months ago html-admin-page-dashboard.php 2 years ago html-admin-page-entries-view.php 2 months ago html-admin-page-export.php 1 year ago html-admin-page-form-migrator.php 2 years ago html-admin-page-form-templates.php 5 months ago html-admin-page-import.php 1 year ago html-admin-page-payments.php 2 months ago html-admin-page-setting.php 1 week ago html-admin-page-smart-smtp-setup.php 2 months ago html-admin-page-tools-logs.php 3 months ago html-admin-page-tools.php 4 months ago html-admin-settings.php 2 months ago html-deactivation-popup.php 3 years ago html-notice-allow-usage.php 3 months ago html-notice-custom.php 4 months ago html-notice-email-failed-notice.php 4 months ago html-notice-php-deprecation.php 4 months ago html-notice-review.php 4 months ago html-notice-survey.php 4 months ago html-notice-update.php 4 months ago html-notice-updated.php 4 months ago html-notice-updating.php 4 months ago
html-notice-email-failed-notice.php
45 lines
1 <?php
2 /**
3 * Admin View: Notice - Email Failed Notice.
4 *
5 * @package Everest Forms
6 */
7
8 if ( ! defined( 'ABSPATH' ) ) {
9 exit; // Exit if accessed directly.
10 }
11 ?>
12
13 <div class="notice notice-warning is-dismissible inline" id="everest-forms-email-failed-notice">
14 <p>
15 <strong><?php esc_html_e( 'Everest Forms Email Send Error', 'everest-forms' ); ?></strong><br/>
16 <?php esc_html_e( 'The last email sent from the Everest Forms Plugin was not delivered to the user.', 'everest-forms' ); ?>
17 </p>
18 <p style="border-left: 2px solid #72aee6; background: #F0FFFF; padding: 10px;">\
19 /* translators: %s: Error Message*/
20 <?php echo esc_html( sprintf( __( '%s', 'everest-forms' ), $error_message ) ); ?>
21 </p>
22 <br/>
23 <p>
24 <a href="https://docs.wpeverest.com/everest-forms/docs/emails-are-not-being-delivered/" target="_blank">
25 <?php esc_html_e( 'Learn More', 'everest-forms' ); ?>
26 </a>
27 </p>
28 </div>
29
30 <script>
31 jQuery(function($) {
32 $(document).ready(function() {
33 var noticeContainer = $('#everest-forms-email-failed-notice');
34 noticeContainer.find('.notice-dismiss').on('click', function(e) {
35 e.preventDefault();
36
37 $.post(ajaxurl, {
38 action: 'everest_forms_email_failed_notice_dismiss',
39 _wpnonce: '<?php echo esc_js( wp_create_nonce( 'email_failed_nonce' ) ); ?>'
40 });
41 });
42 });
43 });
44 </script>
45