Version Description
- FIX: Confliction with JetPack Contact Module Fixed
- FIX: Major Bugs
- TWEAK: Code Optimized
Download this release
Release Info
Developer | contact-banker |
Plugin | WP Mail Bank: WordPress SMTP Plugin & Email Logs |
Version | 3.0.11 |
Comparing to | |
See all releases |
Code changes from version 3.0.10 to 3.0.11
- assets/global/img/banner.png +0 -0
- includes/sidebar.php +119 -119
- includes/translations.php +26 -26
- readme.txt +34 -28
- views/connectivity-test/connectivity-test.php +1 -1
- views/email-logs/email-logs.php +1 -1
- views/email-setup/email-setup.php +2 -2
- views/feedbacks/feedbacks.php +1 -1
- views/premium-editions/premium-editions.php +24 -300
- views/roles-and-capabilities/roles-and-capabilities.php +1 -1
- views/settings/settings.php +1 -1
- views/system-information/system-information.php +1 -1
- views/test-email/test-email.php +2 -2
- views/wizard/wizard.php +18 -299
- wp-mail-bank.php +7 -7
assets/global/img/banner.png
ADDED
Binary file
|
includes/sidebar.php
CHANGED
@@ -7,126 +7,126 @@
|
|
7 |
* @version 2.0.0
|
8 |
*/
|
9 |
if (!defined("ABSPATH")) {
|
10 |
-
|
11 |
}
|
12 |
if (!is_user_logged_in()) {
|
13 |
-
|
14 |
} else {
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
|
|
120 |
</div>
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
}
|
7 |
* @version 2.0.0
|
8 |
*/
|
9 |
if (!defined("ABSPATH")) {
|
10 |
+
exit; // Exit if accessed directly
|
11 |
}
|
12 |
if (!is_user_logged_in()) {
|
13 |
+
return;
|
14 |
} else {
|
15 |
+
$access_granted = false;
|
16 |
+
foreach ($user_role_permission as $permission) {
|
17 |
+
if (current_user_can($permission)) {
|
18 |
+
$access_granted = true;
|
19 |
+
break;
|
20 |
+
}
|
21 |
+
}
|
22 |
+
if (!$access_granted) {
|
23 |
+
return;
|
24 |
+
} else {
|
25 |
+
?>
|
26 |
+
<div class="page-sidebar-wrapper-tech-banker">
|
27 |
+
<div class="page-sidebar-tech-banker navbar-collapse collapse">
|
28 |
+
<div class="sidebar-menu-tech-banker">
|
29 |
+
<ul class="page-sidebar-menu-tech-banker" data-slide-speed="200">
|
30 |
+
<div class="sidebar-search-wrapper" style="padding:20px;text-align:center">
|
31 |
+
<a class="plugin-logo" href="<?php echo tech_banker_beta_url; ?>" target="_blank">
|
32 |
+
<img src="<?php echo plugins_url("assets/global/img/mail-bank-logo.png", dirname(__FILE__)); ?>" alt="Mail Bank">
|
33 |
+
</a>
|
34 |
+
</div>
|
35 |
+
<li id="ux_welcome_page">
|
36 |
+
<a href="admin.php?page=mb_mail_bank_welcome_page">
|
37 |
+
<i class="icon-custom-present"></i>
|
38 |
+
<span class="title">
|
39 |
+
<?php echo $mb_overview; ?>
|
40 |
+
</span>
|
41 |
+
</a>
|
42 |
+
</li>
|
43 |
+
<li id="ux_mb_li_email_configuration">
|
44 |
+
<a href="admin.php?page=mb_email_configuration">
|
45 |
+
<i class="icon-custom-envelope-open"></i>
|
46 |
+
<span class="title">
|
47 |
+
<?php echo $mb_email_configuration; ?>
|
48 |
+
</span>
|
49 |
+
</a>
|
50 |
+
</li>
|
51 |
+
<li id="ux_mb_li_test_email">
|
52 |
+
<a href="admin.php?page=mb_test_email">
|
53 |
+
<i class="icon-custom-envelope "></i>
|
54 |
+
<span class="title">
|
55 |
+
<?php echo $mb_test_email; ?>
|
56 |
+
</span>
|
57 |
+
</a>
|
58 |
+
</li>
|
59 |
+
<li id="ux_mb_li_connectivity_test">
|
60 |
+
<a href="admin.php?page=mb_connectivity_test">
|
61 |
+
<i class="icon-custom-globe"></i>
|
62 |
+
<span class="title">
|
63 |
+
<?php echo $mb_connectivity_test; ?>
|
64 |
+
</span>
|
65 |
+
</a>
|
66 |
+
</li>
|
67 |
+
<li id="ux_mb_li_email_logs">
|
68 |
+
<a href="admin.php?page=mb_email_logs">
|
69 |
+
<i class="icon-custom-note"></i>
|
70 |
+
<span class="title">
|
71 |
+
<?php echo $mb_email_logs; ?>
|
72 |
+
</span>
|
73 |
+
<span class="badge">
|
74 |
+
Pro
|
75 |
+
</span>
|
76 |
+
</a>
|
77 |
+
</li>
|
78 |
+
<li id="ux_mb_li_settings">
|
79 |
+
<a href="admin.php?page=mb_settings">
|
80 |
+
<i class="icon-custom-paper-clip"></i>
|
81 |
+
<span class="title">
|
82 |
+
<?php echo $mb_settings; ?>
|
83 |
+
</span>
|
84 |
+
</a>
|
85 |
+
</li>
|
86 |
+
<li id="ux_mb_li_roles_and_capabilities">
|
87 |
+
<a href="admin.php?page=mb_roles_and_capabilities">
|
88 |
+
<i class="icon-custom-user"></i>
|
89 |
+
<span class="title">
|
90 |
+
<?php echo $mb_roles_and_capabilities; ?>
|
91 |
+
</span>
|
92 |
+
<span class="badge">Pro</span>
|
93 |
+
</a>
|
94 |
+
</li>
|
95 |
+
<li id="ux_mb_li_feedbacks">
|
96 |
+
<a href="admin.php?page=mb_feedbacks">
|
97 |
+
<i class="icon-custom-star"></i>
|
98 |
+
<span class="title">
|
99 |
+
<?php echo $mb_feedbacks; ?>
|
100 |
+
</span>
|
101 |
+
</a>
|
102 |
+
</li>
|
103 |
+
<li id="ux_mb_li_system_information">
|
104 |
+
<a href="admin.php?page=mb_system_information">
|
105 |
+
<i class="icon-custom-screen-desktop"></i>
|
106 |
+
<span class="title">
|
107 |
+
<?php echo $mb_system_information; ?>
|
108 |
+
</span>
|
109 |
+
</a>
|
110 |
+
</li>
|
111 |
+
<li class="" id="ux_li_upgrade">
|
112 |
+
<a href="admin.php?page=mb_upgrade">
|
113 |
+
<i class="icon-custom-briefcase"></i>
|
114 |
+
<span class="title">
|
115 |
+
<?php echo $mb_upgrade; ?>
|
116 |
+
</span>
|
117 |
+
</a>
|
118 |
+
</li>
|
119 |
+
</ul>
|
120 |
+
</div>
|
121 |
</div>
|
122 |
+
</div>
|
123 |
+
<div class="page-content-wrapper">
|
124 |
+
<div class="page-content">
|
125 |
+
<div style="margin-bottom:12px">
|
126 |
+
<a href="https://mail-bank.tech-banker.com/" target="_blank">
|
127 |
+
<img src="<?php echo plugins_url("assets/global/img/banner.png", dirname(__FILE__)); ?>" title="Mail Bank" style="width: 100%;">
|
128 |
+
</a>
|
129 |
+
</div>
|
130 |
+
<?php
|
131 |
+
}
|
132 |
+
}
|
|
includes/translations.php
CHANGED
@@ -38,21 +38,21 @@ if (!is_user_logged_in()) {
|
|
38 |
$wp_langs["bcc"] = "بلوچی مکرانی";
|
39 |
$wp_langs["ba"] = "башҡорт теле";
|
40 |
$wp_langs["eu"] = "Euskara";
|
41 |
-
$wp_langs["bel"] = "
|
42 |
$wp_langs["bn_bd"] = "বাংলা";
|
43 |
$wp_langs["bs_ba"] = "Bosanski";
|
44 |
$wp_langs["bre"] = "Brezhoneg";
|
45 |
-
$wp_langs["bg_bg"] = "
|
46 |
$wp_langs["ca"] = "Català";
|
47 |
$wp_langs["bal"] = "Català (Balear)";
|
48 |
$wp_langs["ceb"] = "Cebuano";
|
49 |
$wp_langs["zh_hk"] = "香港中文版 ";
|
50 |
-
$wp_langs["zh_tw"] = "
|
51 |
$wp_langs["co"] = "Corsu";
|
52 |
$wp_langs["hr"] = "Hrvatski";
|
53 |
$wp_langs["dv"] = "ދިވެހި";
|
54 |
$wp_langs["nl_be"] = "Nederlands (België)";
|
55 |
-
$wp_langs["dzo"] = "
|
56 |
$wp_langs["eo"] = "Esperanto";
|
57 |
$wp_langs["et"] = "Eesti";
|
58 |
$wp_langs["fo"] = "Føroyskt";
|
@@ -63,16 +63,16 @@ if (!is_user_logged_in()) {
|
|
63 |
$wp_langs["fur"] = "Friulian";
|
64 |
$wp_langs["fuc"] = "Pulaar";
|
65 |
$wp_langs["gl_es"] = "Galego";
|
66 |
-
$wp_langs["ka_ge"] = "
|
67 |
$wp_langs["de_ch"] = "Deutsch (Schweiz)";
|
68 |
$wp_langs["kal"] = "Kalaallisut";
|
69 |
$wp_langs["gn"] = "Avañe'ẽ";
|
70 |
-
$wp_langs["gu"] = "
|
71 |
$wp_langs["hat"] = "Kreyol ayisyen";
|
72 |
$wp_langs["haw_us"] = "Ōlelo Hawaiʻi";
|
73 |
$wp_langs["haz"] = "هزاره گی";
|
74 |
-
$wp_langs["hi_in"] = "
|
75 |
-
$wp_langs["is_is"] = "
|
76 |
$wp_langs["ido"] = "Ido";
|
77 |
$wp_langs["id_id"] = "Bahasa Indonesia";
|
78 |
$wp_langs["ga"] = "Gaelige";
|
@@ -80,9 +80,9 @@ if (!is_user_logged_in()) {
|
|
80 |
$wp_langs["ja"] = "日本語";
|
81 |
$wp_langs["jv_id"] = "Basa Jawa";
|
82 |
$wp_langs["kab"] = "Taqbaylit";
|
83 |
-
$wp_langs["kn"] = "
|
84 |
$wp_langs["kk"] = "Қазақ тілі";
|
85 |
-
$wp_langs["km"] = "
|
86 |
$wp_langs["kin"] = "Ikinyarwanda";
|
87 |
$wp_langs["ky_ky"] = "кыргыз тили";
|
88 |
$wp_langs["ko_kr"] = "한국어";
|
@@ -93,13 +93,13 @@ if (!is_user_logged_in()) {
|
|
93 |
$wp_langs["lin"] = "Ngala";
|
94 |
$wp_langs["lt_lt"] = "Lietuvių kalba";
|
95 |
$wp_langs["lb_lu"] = "Lëtzebuergesch";
|
96 |
-
$wp_langs["mk_mk"] = "
|
97 |
$wp_langs["mg_mg"] = "Malagasy";
|
98 |
$wp_langs["ms_my"] = "Bahasa Melayu";
|
99 |
$wp_langs["ml_in"] = "മലയാളം";
|
100 |
-
$wp_langs["mri"] = "Te Reo
|
101 |
$wp_langs["mr"] = "मराठी";
|
102 |
-
$wp_langs["xmf"] = "
|
103 |
$wp_langs["mn"] = "Монгол";
|
104 |
$wp_langs["me_me"] = "Crnogorski jezik";
|
105 |
$wp_langs["ary"] = "العربية المغربية";
|
@@ -110,23 +110,23 @@ if (!is_user_logged_in()) {
|
|
110 |
$wp_langs["ory"] = "ଓଡ଼ିଆ";
|
111 |
$wp_langs["os"] = "Ирон";
|
112 |
$wp_langs["ps"] = "پښتو";
|
113 |
-
$wp_langs["fa_ir"] = "
|
114 |
-
$wp_langs["fa_af"] = "(
|
115 |
$wp_langs["pl_pl"] = "Polski";
|
116 |
$wp_langs["pa_in"] = "ਪੰਜਾਬੀ";
|
117 |
$wp_langs["rhg"] = "Ruáinga";
|
118 |
$wp_langs["roh"] = "Rumantsch Vallader";
|
119 |
-
$wp_langs["rue"] = "
|
120 |
$wp_langs["sah"] = "Сахалыы";
|
121 |
-
$wp_langs["sa_in"] = "
|
122 |
$wp_langs["srd"] = "Sardu";
|
123 |
$wp_langs["gd"] = "Gàidhlig";
|
124 |
-
$wp_langs["sr_rs"] = "
|
125 |
-
$wp_langs["szl"] = "
|
126 |
$wp_langs["snd"] = "سنڌي";
|
127 |
$wp_langs["si_lk"] = "සිංහල";
|
128 |
-
$wp_langs["sk_sk"] = "
|
129 |
-
$wp_langs["sl_si"] = "
|
130 |
$wp_langs["so_so"] = "Afsoomaali";
|
131 |
$wp_langs["azb"] = "گؤنئی آذربایجان";
|
132 |
$wp_langs["es_ar"] = "Español de Argentina";
|
@@ -144,12 +144,12 @@ if (!is_user_logged_in()) {
|
|
144 |
$wp_langs["tah"] = "Reo Tahiti";
|
145 |
$wp_langs["tg"] = "Тоҷикӣ";
|
146 |
$wp_langs["tzm"] = "ⵜⴰⵎⴰⵣⵉⵖⵜ";
|
147 |
-
$wp_langs["ta_in"] = "
|
148 |
-
$wp_langs["ta_lk"] = "
|
149 |
$wp_langs["tt_ru"] = "Татар теле";
|
150 |
-
$wp_langs["te"] = "
|
151 |
-
$wp_langs["bo"] = "
|
152 |
-
$wp_langs["tir"] = "
|
153 |
$wp_langs["tuk"] = "Türkmençe";
|
154 |
$wp_langs["twd"] = "Twents";
|
155 |
$wp_langs["ug_cn"] = "Uyƣurqə";
|
38 |
$wp_langs["bcc"] = "بلوچی مکرانی";
|
39 |
$wp_langs["ba"] = "башҡорт теле";
|
40 |
$wp_langs["eu"] = "Euskara";
|
41 |
+
$wp_langs["bel"] = "Белару�?ка�? мова";
|
42 |
$wp_langs["bn_bd"] = "বাংলা";
|
43 |
$wp_langs["bs_ba"] = "Bosanski";
|
44 |
$wp_langs["bre"] = "Brezhoneg";
|
45 |
+
$wp_langs["bg_bg"] = "Българ�?ки";
|
46 |
$wp_langs["ca"] = "Català";
|
47 |
$wp_langs["bal"] = "Català (Balear)";
|
48 |
$wp_langs["ceb"] = "Cebuano";
|
49 |
$wp_langs["zh_hk"] = "香港中文版 ";
|
50 |
+
$wp_langs["zh_tw"] = "�?體中文";
|
51 |
$wp_langs["co"] = "Corsu";
|
52 |
$wp_langs["hr"] = "Hrvatski";
|
53 |
$wp_langs["dv"] = "ދިވެހި";
|
54 |
$wp_langs["nl_be"] = "Nederlands (België)";
|
55 |
+
$wp_langs["dzo"] = "རྫོང་�?";
|
56 |
$wp_langs["eo"] = "Esperanto";
|
57 |
$wp_langs["et"] = "Eesti";
|
58 |
$wp_langs["fo"] = "Føroyskt";
|
63 |
$wp_langs["fur"] = "Friulian";
|
64 |
$wp_langs["fuc"] = "Pulaar";
|
65 |
$wp_langs["gl_es"] = "Galego";
|
66 |
+
$wp_langs["ka_ge"] = "ქ�?რთული";
|
67 |
$wp_langs["de_ch"] = "Deutsch (Schweiz)";
|
68 |
$wp_langs["kal"] = "Kalaallisut";
|
69 |
$wp_langs["gn"] = "Avañe'ẽ";
|
70 |
+
$wp_langs["gu"] = "ગ�?જરાતી";
|
71 |
$wp_langs["hat"] = "Kreyol ayisyen";
|
72 |
$wp_langs["haw_us"] = "Ōlelo Hawaiʻi";
|
73 |
$wp_langs["haz"] = "هزاره گی";
|
74 |
+
$wp_langs["hi_in"] = "हिन�?दी";
|
75 |
+
$wp_langs["is_is"] = "�?slenska";
|
76 |
$wp_langs["ido"] = "Ido";
|
77 |
$wp_langs["id_id"] = "Bahasa Indonesia";
|
78 |
$wp_langs["ga"] = "Gaelige";
|
80 |
$wp_langs["ja"] = "日本語";
|
81 |
$wp_langs["jv_id"] = "Basa Jawa";
|
82 |
$wp_langs["kab"] = "Taqbaylit";
|
83 |
+
$wp_langs["kn"] = "ಕನ�?ನಡ";
|
84 |
$wp_langs["kk"] = "Қазақ тілі";
|
85 |
+
$wp_langs["km"] = "ភាសា�?្មែរ";
|
86 |
$wp_langs["kin"] = "Ikinyarwanda";
|
87 |
$wp_langs["ky_ky"] = "кыргыз тили";
|
88 |
$wp_langs["ko_kr"] = "한국어";
|
93 |
$wp_langs["lin"] = "Ngala";
|
94 |
$wp_langs["lt_lt"] = "Lietuvių kalba";
|
95 |
$wp_langs["lb_lu"] = "Lëtzebuergesch";
|
96 |
+
$wp_langs["mk_mk"] = "Македон�?ки јазик";
|
97 |
$wp_langs["mg_mg"] = "Malagasy";
|
98 |
$wp_langs["ms_my"] = "Bahasa Melayu";
|
99 |
$wp_langs["ml_in"] = "മലയാളം";
|
100 |
+
$wp_langs["mri"] = "Te Reo M�?ori";
|
101 |
$wp_langs["mr"] = "मराठी";
|
102 |
+
$wp_langs["xmf"] = "მ�?რგ�?ლური ნინ�?";
|
103 |
$wp_langs["mn"] = "Монгол";
|
104 |
$wp_langs["me_me"] = "Crnogorski jezik";
|
105 |
$wp_langs["ary"] = "العربية المغربية";
|
110 |
$wp_langs["ory"] = "ଓଡ଼ିଆ";
|
111 |
$wp_langs["os"] = "Ирон";
|
112 |
$wp_langs["ps"] = "پښتو";
|
113 |
+
$wp_langs["fa_ir"] = "�?ارسی";
|
114 |
+
$wp_langs["fa_af"] = "(�?ارسی (ا�?غانستان";
|
115 |
$wp_langs["pl_pl"] = "Polski";
|
116 |
$wp_langs["pa_in"] = "ਪੰਜਾਬੀ";
|
117 |
$wp_langs["rhg"] = "Ruáinga";
|
118 |
$wp_langs["roh"] = "Rumantsch Vallader";
|
119 |
+
$wp_langs["rue"] = "Ру�?инь�?кый";
|
120 |
$wp_langs["sah"] = "Сахалыы";
|
121 |
+
$wp_langs["sa_in"] = "भारतम�?";
|
122 |
$wp_langs["srd"] = "Sardu";
|
123 |
$wp_langs["gd"] = "Gàidhlig";
|
124 |
+
$wp_langs["sr_rs"] = "Срп�?ки језик";
|
125 |
+
$wp_langs["szl"] = "Śl�?nsk�? g�?dka";
|
126 |
$wp_langs["snd"] = "سنڌي";
|
127 |
$wp_langs["si_lk"] = "සිංහල";
|
128 |
+
$wp_langs["sk_sk"] = "Sloven�?ina";
|
129 |
+
$wp_langs["sl_si"] = "Slovenš�?ina";
|
130 |
$wp_langs["so_so"] = "Afsoomaali";
|
131 |
$wp_langs["azb"] = "گؤنئی آذربایجان";
|
132 |
$wp_langs["es_ar"] = "Español de Argentina";
|
144 |
$wp_langs["tah"] = "Reo Tahiti";
|
145 |
$wp_langs["tg"] = "Тоҷикӣ";
|
146 |
$wp_langs["tzm"] = "ⵜⴰⵎⴰⵣⵉⵖⵜ";
|
147 |
+
$wp_langs["ta_in"] = "தமிழ�?";
|
148 |
+
$wp_langs["ta_lk"] = "தமிழ�?";
|
149 |
$wp_langs["tt_ru"] = "Татар теле";
|
150 |
+
$wp_langs["te"] = "తెల�?గ�?";
|
151 |
+
$wp_langs["bo"] = "བོད་ས�?ད";
|
152 |
+
$wp_langs["tir"] = "ት�?ርኛ";
|
153 |
$wp_langs["tuk"] = "Türkmençe";
|
154 |
$wp_langs["twd"] = "Twents";
|
155 |
$wp_langs["ug_cn"] = "Uyƣurqə";
|
readme.txt
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
=== WP Mail SMTP Plugin by Mail Bank ===
|
2 |
Contributors: contact-banker, Gallery-Bank, wordpress-empire
|
3 |
-
Donate link:
|
4 |
Tags: wp mail, wordpress smtp, wp smtp, wordpress smtp plugin, email, gmail, mail, mail smtp, mailer, outgoing mail, phpmailer, sendmail, smtp
|
5 |
Requires at least: 2.7
|
6 |
-
Tested up to: 4.
|
7 |
Stable tag: trunk
|
8 |
|
9 |
-
Mail
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
= WordPress SMTP Plugin =
|
14 |
|
15 |
-
[**WP Mail SMTP Plugin by Mail Bank**](
|
16 |
|
17 |
WP Mail SMTP Plugin by Mail Bank works with all major email services such as Gmail, Yahoo, Outlook, Microsoft Live, and any other email sending service that offers SMTP.
|
18 |
|
@@ -22,29 +22,29 @@ WP Mail SMTP Plugin by Mail Bank is an substantial tool known for excellence del
|
|
22 |
|
23 |
> #### **Live Demos - Mail Bank**
|
24 |
|
25 |
-
> * [Mail Bank - WP Mail SMTP & PHPMailer Plugin](
|
26 |
-
> * [Mail Bank Demos - WP Mail SMTP & PHPMailer Plugin](
|
27 |
-
> * [Installation Screen - WP Mail SMTP & PHPMailer Plugin](
|
28 |
-
> * [Email Setup Screen - WP Mail SMTP & PHPMailer Plugin](
|
29 |
-
> * [Test Email Screen - WP Mail SMTP & PHPMailer Plugin](
|
30 |
-
> * [Connectivity Screen - WP Mail SMTP & PHPMailer Plugin](
|
31 |
-
> * [Email Logs Screen - WP Mail SMTP & PHPMailer Plugin](
|
32 |
-
> * [Plugin Settings Screen - WP Mail SMTP & PHPMailer Plugin](
|
33 |
-
> * [Roles & Capabilities Screen - WP Mail SMTP & PHPMailer Plugin](
|
34 |
-
> * [Feedbacks Screen - WP Mail SMTP & PHPMailer Plugin](
|
35 |
-
> * [System Information Screen - WP Mail SMTP & PHPMailer Plugin](
|
36 |
|
37 |
> #### **User Guide - Mail Bank**
|
38 |
|
39 |
-
> * [Installation Screen - WP Mail SMTP & PHPMailer Plugin](
|
40 |
-
> * [Email Setup Screen - WP Mail SMTP & PHPMailer Plugin](
|
41 |
-
> * [Test Email Screen - WP Mail SMTP & PHPMailer Plugin](
|
42 |
-
> * [Connectivity Screen - WP Mail SMTP & PHPMailer Plugin](
|
43 |
-
> * [Email Logs Screen - WP Mail SMTP & PHPMailer Plugin](
|
44 |
-
> * [Plugin Settings Screen - WP Mail SMTP & PHPMailer Plugin](
|
45 |
-
> * [Roles & Capabilities Screen - WP Mail SMTP & PHPMailer Plugin](
|
46 |
-
> * [Feedbacks Screen - WP Mail SMTP & PHPMailer Plugin](
|
47 |
-
> * [System Information Screen - WP Mail SMTP & PHPMailer Plugin](
|
48 |
|
49 |
It has following two options to send emails one is SMTP server and other is inbuilt PHPMailer.
|
50 |
|
@@ -186,7 +186,7 @@ There are two ways to send Emails from your WordPress site to SMTP servers
|
|
186 |
* The second method is by allowing to use less secure apps : This method is not recommended because it's less secure. You have to type in your Username and Password. It should only be used if you are unable to use the first method.
|
187 |
|
188 |
There are lot of features also available in Premium Editions, you can check before downloading & purchasing.
|
189 |
-
Click [here](
|
190 |
|
191 |
Mail Bank redirects you to a Welcome Screen on Activation of the Plugin and asks you to either Skip or Opt-In for Non Sensitive Information about your Website.
|
192 |
|
@@ -220,7 +220,7 @@ For the Premium Edition there is a separate support package available. Please do
|
|
220 |
|
221 |
= Contact Us =
|
222 |
|
223 |
-
* [
|
224 |
|
225 |
== Installation ==
|
226 |
|
@@ -300,6 +300,12 @@ It allows the users to view the debugging output of logged emails.
|
|
300 |
|
301 |
== Changelog ==
|
302 |
|
|
|
|
|
|
|
|
|
|
|
|
|
303 |
= 3.0.10 =
|
304 |
|
305 |
* FIX: Major Bugs
|
@@ -321,8 +327,8 @@ It allows the users to view the debugging output of logged emails.
|
|
321 |
|
322 |
= 3.0.7 =
|
323 |
|
324 |
-
* TWEAK: Code Optimized
|
325 |
* TWEAK: Unused Files removed
|
|
|
326 |
|
327 |
= 3.0.6 =
|
328 |
|
@@ -729,4 +735,4 @@ It allows the users to view the debugging output of logged emails.
|
|
729 |
|
730 |
= 1.0 =
|
731 |
|
732 |
-
* Initial Release
|
1 |
=== WP Mail SMTP Plugin by Mail Bank ===
|
2 |
Contributors: contact-banker, Gallery-Bank, wordpress-empire
|
3 |
+
Donate link: https://mail-bank.tech-banker.com/
|
4 |
Tags: wp mail, wordpress smtp, wp smtp, wordpress smtp plugin, email, gmail, mail, mail smtp, mailer, outgoing mail, phpmailer, sendmail, smtp
|
5 |
Requires at least: 2.7
|
6 |
+
Tested up to: 4.8.1
|
7 |
Stable tag: trunk
|
8 |
|
9 |
+
WP Mail SMTP Plugin uses smtp settings or phpmailer for sending emails from your website/blog.
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
= WordPress SMTP Plugin =
|
14 |
|
15 |
+
[**WP Mail SMTP Plugin by Mail Bank**](https://mail-bank.tech-banker.com/) is one of easiest way of sending emails and logging them from your WordPress site using your preferred PHPMailer or SMTP Server Settings.
|
16 |
|
17 |
WP Mail SMTP Plugin by Mail Bank works with all major email services such as Gmail, Yahoo, Outlook, Microsoft Live, and any other email sending service that offers SMTP.
|
18 |
|
22 |
|
23 |
> #### **Live Demos - Mail Bank**
|
24 |
|
25 |
+
> * [Mail Bank - WP Mail SMTP & PHPMailer Plugin](https://mail-bank.tech-banker.com/)
|
26 |
+
> * [Mail Bank Demos - WP Mail SMTP & PHPMailer Plugin](https://mail-bank.tech-banker.com/demos/)
|
27 |
+
> * [Installation Screen - WP Mail SMTP & PHPMailer Plugin](https://mail-bank.tech-banker.com/demos/installation/)
|
28 |
+
> * [Email Setup Screen - WP Mail SMTP & PHPMailer Plugin](https://mail-bank.tech-banker.com/demos/email-setup/)
|
29 |
+
> * [Test Email Screen - WP Mail SMTP & PHPMailer Plugin](https://mail-bank.tech-banker.com/demos/test-email/)
|
30 |
+
> * [Connectivity Screen - WP Mail SMTP & PHPMailer Plugin](https://mail-bank.tech-banker.com/demos/connectivity-test/)
|
31 |
+
> * [Email Logs Screen - WP Mail SMTP & PHPMailer Plugin](https://mail-bank.tech-banker.com/demos/email-logs/)
|
32 |
+
> * [Plugin Settings Screen - WP Mail SMTP & PHPMailer Plugin](https://mail-bank.tech-banker.com/demos/plugin-settings/)
|
33 |
+
> * [Roles & Capabilities Screen - WP Mail SMTP & PHPMailer Plugin](https://mail-bank.tech-banker.com/demos/roles-capabilities/)
|
34 |
+
> * [Feedbacks Screen - WP Mail SMTP & PHPMailer Plugin](https://mail-bank.tech-banker.com/demos/feedbacks/)
|
35 |
+
> * [System Information Screen - WP Mail SMTP & PHPMailer Plugin](https://mail-bank.tech-banker.com/demos/system-information/)
|
36 |
|
37 |
> #### **User Guide - Mail Bank**
|
38 |
|
39 |
+
> * [Installation Screen - WP Mail SMTP & PHPMailer Plugin](https://mail-bank.tech-banker.com/user-guide/installation/)
|
40 |
+
> * [Email Setup Screen - WP Mail SMTP & PHPMailer Plugin](https://mail-bank.tech-banker.com/user-guide/email-setup/)
|
41 |
+
> * [Test Email Screen - WP Mail SMTP & PHPMailer Plugin](https://mail-bank.tech-banker.com/user-guide/test-email/)
|
42 |
+
> * [Connectivity Screen - WP Mail SMTP & PHPMailer Plugin](https://mail-bank.tech-banker.com/user-guide/connectivity-test/)
|
43 |
+
> * [Email Logs Screen - WP Mail SMTP & PHPMailer Plugin](https://mail-bank.tech-banker.com/user-guide/email-logs/)
|
44 |
+
> * [Plugin Settings Screen - WP Mail SMTP & PHPMailer Plugin](https://mail-bank.tech-banker.com/user-guide/plugin-settings/)
|
45 |
+
> * [Roles & Capabilities Screen - WP Mail SMTP & PHPMailer Plugin](https://mail-bank.tech-banker.com/user-guide/roles-capabilities/)
|
46 |
+
> * [Feedbacks Screen - WP Mail SMTP & PHPMailer Plugin](https://mail-bank.tech-banker.com/user-guide/feedbacks/)
|
47 |
+
> * [System Information Screen - WP Mail SMTP & PHPMailer Plugin](https://mail-bank.tech-banker.com/user-guide/system-information/)
|
48 |
|
49 |
It has following two options to send emails one is SMTP server and other is inbuilt PHPMailer.
|
50 |
|
186 |
* The second method is by allowing to use less secure apps : This method is not recommended because it's less secure. You have to type in your Username and Password. It should only be used if you are unable to use the first method.
|
187 |
|
188 |
There are lot of features also available in Premium Editions, you can check before downloading & purchasing.
|
189 |
+
Click [here](https://mail-bank.tech-banker.com/) for Mail Bank Premium Editions.
|
190 |
|
191 |
Mail Bank redirects you to a Welcome Screen on Activation of the Plugin and asks you to either Skip or Opt-In for Non Sensitive Information about your Website.
|
192 |
|
220 |
|
221 |
= Contact Us =
|
222 |
|
223 |
+
* [https://mail-bank.tech-banker.com/contact-us](https://mail-bank.tech-banker.com/contact-us/)
|
224 |
|
225 |
== Installation ==
|
226 |
|
300 |
|
301 |
== Changelog ==
|
302 |
|
303 |
+
= 3.0.11 =
|
304 |
+
|
305 |
+
* FIX: Confliction with JetPack Contact Module Fixed
|
306 |
+
* FIX: Major Bugs
|
307 |
+
* TWEAK: Code Optimized
|
308 |
+
|
309 |
= 3.0.10 =
|
310 |
|
311 |
* FIX: Major Bugs
|
327 |
|
328 |
= 3.0.7 =
|
329 |
|
|
|
330 |
* TWEAK: Unused Files removed
|
331 |
+
* TWEAK: Code Optimized
|
332 |
|
333 |
= 3.0.6 =
|
334 |
|
735 |
|
736 |
= 1.0 =
|
737 |
|
738 |
+
* Initial Release
|
views/connectivity-test/connectivity-test.php
CHANGED
@@ -48,7 +48,7 @@ if (!is_user_logged_in()) {
|
|
48 |
<i class="icon-custom-globe"></i>
|
49 |
<?php echo $mb_connectivity_test; ?>
|
50 |
</div>
|
51 |
-
<a href="
|
52 |
</div>
|
53 |
<div class="portlet-body form">
|
54 |
<form id="ux_frm_settings">
|
48 |
<i class="icon-custom-globe"></i>
|
49 |
<?php echo $mb_connectivity_test; ?>
|
50 |
</div>
|
51 |
+
<a href="https://mail-bank.tech-banker.com/" target="_blank" class="premium-editions"><?php echo $mb_upgrade_to ?></a>
|
52 |
</div>
|
53 |
<div class="portlet-body form">
|
54 |
<form id="ux_frm_settings">
|
views/email-logs/email-logs.php
CHANGED
@@ -49,7 +49,7 @@ if (!is_user_logged_in()) {
|
|
49 |
<i class="icon-custom-note"></i>
|
50 |
<?php echo $mb_email_logs; ?>
|
51 |
</div>
|
52 |
-
<a href="
|
53 |
</div>
|
54 |
<div class="portlet-body form">
|
55 |
<form id="ux_frm_email_logs">
|
49 |
<i class="icon-custom-note"></i>
|
50 |
<?php echo $mb_email_logs; ?>
|
51 |
</div>
|
52 |
+
<a href="https://mail-bank.tech-banker.com/" target="_blank" class="premium-editions"><?php echo $mb_upgrade_to ?></a>
|
53 |
</div>
|
54 |
<div class="portlet-body form">
|
55 |
<form id="ux_frm_email_logs">
|
views/email-setup/email-setup.php
CHANGED
@@ -51,7 +51,7 @@ if (!is_user_logged_in()) {
|
|
51 |
<i class="icon-custom-envelope-open"></i>
|
52 |
<?php echo $mb_email_configuration; ?>
|
53 |
</div>
|
54 |
-
<a href="
|
55 |
</div>
|
56 |
<div class="portlet-body form">
|
57 |
<div class="form-body">
|
@@ -370,7 +370,7 @@ if (!is_user_logged_in()) {
|
|
370 |
</label>
|
371 |
<?php
|
372 |
$email_configuration = "This is a demo Test Email for Email Setup - Mail Bank";
|
373 |
-
wp_editor($email_configuration,
|
374 |
?>
|
375 |
<textarea id="ux_email_configuration_text_area" name="ux_email_configuration_text_area" style="display: none;"></textarea>
|
376 |
</div>
|
51 |
<i class="icon-custom-envelope-open"></i>
|
52 |
<?php echo $mb_email_configuration; ?>
|
53 |
</div>
|
54 |
+
<a href="https://mail-bank.tech-banker.com/" target="_blank" class="premium-editions"><?php echo $mb_upgrade_to ?></a>
|
55 |
</div>
|
56 |
<div class="portlet-body form">
|
57 |
<div class="form-body">
|
370 |
</label>
|
371 |
<?php
|
372 |
$email_configuration = "This is a demo Test Email for Email Setup - Mail Bank";
|
373 |
+
wp_editor($email_configuration, 'ux_content', array('teeny' => TRUE, 'textarea_name' => 'description', 'media_buttons' => FALSE, 'textarea_rows' => 5));
|
374 |
?>
|
375 |
<textarea id="ux_email_configuration_text_area" name="ux_email_configuration_text_area" style="display: none;"></textarea>
|
376 |
</div>
|
views/feedbacks/feedbacks.php
CHANGED
@@ -47,7 +47,7 @@ if (!is_user_logged_in()) {
|
|
47 |
<i class="icon-custom-star"></i>
|
48 |
<?php echo $mb_feedbacks; ?>
|
49 |
</div>
|
50 |
-
<a href="
|
51 |
</div>
|
52 |
<div class="portlet-body form">
|
53 |
<form id="ux_frm_feedbacks">
|
47 |
<i class="icon-custom-star"></i>
|
48 |
<?php echo $mb_feedbacks; ?>
|
49 |
</div>
|
50 |
+
<a href="https://mail-bank.tech-banker.com/" target="_blank" class="premium-editions"><?php echo $mb_upgrade_to ?></a>
|
51 |
</div>
|
52 |
<div class="portlet-body form">
|
53 |
<form id="ux_frm_feedbacks">
|
views/premium-editions/premium-editions.php
CHANGED
@@ -52,309 +52,33 @@ if (!is_user_logged_in()) {
|
|
52 |
<form id="ux_frm_premium_editions">
|
53 |
<div class="form-body">
|
54 |
<div class="wpb_wrapper">
|
55 |
-
<div
|
56 |
-
<div class="
|
57 |
-
<div class="gw-go-col-wrap gw-go-col-wrap-0 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="0" style="height: 1150;">
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
<div class="gw-go-body-cell" style="height: 16px;"><strong>1 week of Technical Support</strong></div>
|
80 |
-
</li>
|
81 |
-
<li class="gw-go-even" data-row-index="5">
|
82 |
-
<div class="gw-go-body-cell" style="height: 16px;"><strong>1 year of Free Updates</strong></div>
|
83 |
-
</li>
|
84 |
-
<li class="gw-go-even" data-row-index="6">
|
85 |
-
<div class="gw-go-body-cell" style="height: 16px;">Automatic Plugin Updates</div>
|
86 |
-
</li>
|
87 |
-
<li class="gw-go-even" data-row-index="7">
|
88 |
-
<div class="gw-go-body-cell" style="height: 16px;">Compatibility With Major Plugins</div>
|
89 |
-
</li>
|
90 |
-
<li class="gw-go-even" data-row-index="8">
|
91 |
-
<div class="gw-go-body-cell" style="height: 16px;">Setup Wizard</div>
|
92 |
-
</li>
|
93 |
-
<li class="gw-go-even" data-row-index="9">
|
94 |
-
<div class="gw-go-body-cell" style="height: 16px;">Email Setup</div>
|
95 |
-
</li>
|
96 |
-
<li class="gw-go-even" data-row-index="10">
|
97 |
-
<div class="gw-go-body-cell" style="height: 16px;">Mailer Types</div>
|
98 |
-
</li>
|
99 |
-
<li class="gw-go-even" data-row-index="11">
|
100 |
-
<div class="gw-go-body-cell" style="height: 16px;">SMTP Settings</div>
|
101 |
-
</li>
|
102 |
-
<li class="gw-go-even" data-row-index="12">
|
103 |
-
<div class="gw-go-body-cell" style="height: 16px;">OAuth 2.0 Authentication</div>
|
104 |
-
</li>
|
105 |
-
<li class="gw-go-even" data-row-index="13">
|
106 |
-
<div class="gw-go-body-cell" style="height: 16px;">Test Emails</div>
|
107 |
-
</li>
|
108 |
-
<li class="gw-go-even" data-row-index="14">
|
109 |
-
<div class="gw-go-body-cell" style="height: 16px;">Debug Mode</div>
|
110 |
-
</li>
|
111 |
-
<li class="gw-go-even" data-row-index="15">
|
112 |
-
<div class="gw-go-body-cell" style="height: 16px;">Connectivity Test</div>
|
113 |
-
</li>
|
114 |
-
<li class="gw-go-even" data-row-index="16">
|
115 |
-
<div class="gw-go-body-cell" style="height: 16px;">Different Authentication Parameters</div>
|
116 |
-
</li>
|
117 |
-
<li data-row-index="17">
|
118 |
-
<div class="gw-go-body-cell" style="height: 16px;">Various Encryption Methods</div>
|
119 |
-
</li>
|
120 |
-
<li data-row-index="18">
|
121 |
-
<div class="gw-go-body-cell" style="height: 16px;">Plugin Settings</div>
|
122 |
-
</li>
|
123 |
-
<li data-row-index="19">
|
124 |
-
<div class="gw-go-body-cell" style="height: 16px;">Error Logs</div>
|
125 |
-
</li>
|
126 |
-
<li data-row-index="20">
|
127 |
-
<div class="gw-go-body-cell" style="height: 16px;">Roles & Capabilities</div>
|
128 |
-
</li>
|
129 |
-
<li data-row-index="21">
|
130 |
-
<div class="gw-go-body-cell" style="height: 16px;">____</div>
|
131 |
-
</li>
|
132 |
-
<li data-row-index="22">
|
133 |
-
<div class="gw-go-body-cell" style="height: 16px;">____</div>
|
134 |
-
</li>
|
135 |
-
</ul>
|
136 |
-
<div class="gw-go-footer-wrap">
|
137 |
-
<div class="gw-go-footer-spacer"></div>
|
138 |
-
<div class="gw-go-footer">
|
139 |
-
<div class="gw-go-footer-rows">
|
140 |
-
<div class="gw-go-footer-row" data-row-index="0">
|
141 |
-
<div class="gw-go-footer-row-inner" style="height: 44px;"><a href="http://beta.tech-banker.com/product/mail-bank-personal-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div>
|
142 |
-
</div>
|
143 |
-
<div class="gw-go-footer-row gw-go-even" data-row-index="1">
|
144 |
-
<div class="gw-go-footer-row-inner" style="height: 0px;"></div>
|
145 |
-
</div>
|
146 |
-
<div class="gw-go-footer-row" data-row-index="2">
|
147 |
-
<div class="gw-go-footer-row-inner" style="height: 10px;"> </div>
|
148 |
-
</div>
|
149 |
-
</div>
|
150 |
-
</div>
|
151 |
-
</div>
|
152 |
-
</div>
|
153 |
-
<div class="gw-go-tooltip"></div>
|
154 |
-
</div>
|
155 |
-
</div>
|
156 |
-
<div class="gw-go-col-wrap gw-go-col-wrap-1 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="1" style="height: 600px;">
|
157 |
-
<div class="gw-go-col gw-go-clean-style14">
|
158 |
-
<div class="gw-go-col-inner">
|
159 |
-
<div class="gw-go-col-inner-layer"></div>
|
160 |
-
<div class="gw-go-col-inner-layer-over"></div>
|
161 |
-
<div class="gw-go-ribbon-right"><img src='<?php echo plugins_url("assets/global/img/ribbon_green_right_top.png", dirname(dirname(__FILE__))) ?>'></div>
|
162 |
-
<div class="gw-go-header"></div>
|
163 |
-
<ul class="gw-go-body">
|
164 |
-
<li data-row-index="0">
|
165 |
-
<div class="gw-go-body-cell" style="height: 79px;"><span style="font-size:20px;"><br>BUSINESS</span>
|
166 |
-
<br>Ideal for Businesses
|
167 |
-
</div>
|
168 |
-
</li>
|
169 |
-
<li class="gw-go-even" data-row-index="1">
|
170 |
-
<div class="gw-go-body-cell" style="height: 16px;">____</div>
|
171 |
-
</li>
|
172 |
-
<li data-row-index="2">
|
173 |
-
<div class="gw-go-body-cell" style="height: 75px;"><span style="color:#A4CD39;">€</span><span style="font-size:52px;color:#A4CD39;">19<br></span><span style="color:#A4CD39;">It's a one time purchase.</span></div>
|
174 |
-
</li>
|
175 |
-
<li class="gw-go-even" data-row-index="3">
|
176 |
-
<div class="gw-go-body-cell" style="height: 16px;"><strong>1 Installation per License</strong></div>
|
177 |
-
</li>
|
178 |
-
<li data-row-index="4">
|
179 |
-
<div class="gw-go-body-cell" style="height: 16px;"><strong>1 month of Technical Support</strong></div>
|
180 |
-
</li>
|
181 |
-
<li class="gw-go-even" data-row-index="5">
|
182 |
-
<div class="gw-go-body-cell" style="height: 16px;"><strong>1 year of Free Updates</strong></div>
|
183 |
-
</li>
|
184 |
-
<li data-row-index="6">
|
185 |
-
<div class="gw-go-body-cell" style="height: 16px;">Automatic Plugin Updates</div>
|
186 |
-
</li>
|
187 |
-
<li data-row-index="7">
|
188 |
-
<div class="gw-go-body-cell" style="height: 16px;">Compatibility With Major Plugins</div>
|
189 |
-
</li>
|
190 |
-
<li data-row-index="8">
|
191 |
-
<div class="gw-go-body-cell" style="height: 16px;">Setup Wizard</div>
|
192 |
-
</li>
|
193 |
-
<li data-row-index="9">
|
194 |
-
<div class="gw-go-body-cell" style="height: 16px;">Email Setup</div>
|
195 |
-
</li>
|
196 |
-
<li data-row-index="10">
|
197 |
-
<div class="gw-go-body-cell" style="height: 16px;">Mailer Types</div>
|
198 |
-
</li>
|
199 |
-
<li data-row-index="6">
|
200 |
-
<div class="gw-go-body-cell" style="height: 16px;">SMTP Settings</div>
|
201 |
-
</li>
|
202 |
-
<li data-row-index="11">
|
203 |
-
<div class="gw-go-body-cell" style="height: 16px;">OAuth 2.0 Authentication</div>
|
204 |
-
</li>
|
205 |
-
<li data-row-index="12">
|
206 |
-
<div class="gw-go-body-cell" style="height: 16px;">Test Emails</div>
|
207 |
-
</li>
|
208 |
-
<li data-row-index="13">
|
209 |
-
<div class="gw-go-body-cell" style="height: 16px;">Debug Mode</div>
|
210 |
-
</li>
|
211 |
-
<li data-row-index="14">
|
212 |
-
<div class="gw-go-body-cell" style="height: 16px;">Connectivity Test</div>
|
213 |
-
</li>
|
214 |
-
<li data-row-index="15">
|
215 |
-
<div class="gw-go-body-cell" style="height: 16px;">Different Authentication Parameters</div>
|
216 |
-
</li>
|
217 |
-
<li data-row-index="15">
|
218 |
-
<div class="gw-go-body-cell" style="height: 16px;">Various Encryption Methods</div>
|
219 |
-
</li>
|
220 |
-
<li data-row-index="15">
|
221 |
-
<div class="gw-go-body-cell" style="height: 16px;">Plugin Settings</div>
|
222 |
-
</li>
|
223 |
-
<li data-row-index="15">
|
224 |
-
<div class="gw-go-body-cell" style="height: 16px;">Error Logs</div>
|
225 |
-
</li>
|
226 |
-
<li data-row-index="15">
|
227 |
-
<div class="gw-go-body-cell" style="height: 16px;">Roles & Capabilities</div>
|
228 |
-
</li>
|
229 |
-
<li data-row-index="16">
|
230 |
-
<div class="gw-go-body-cell" style="height: 16px;">Email Logs</div>
|
231 |
-
</li>
|
232 |
-
<li class="gw-go-even" data-row-index="17">
|
233 |
-
<div class="gw-go-body-cell" style="height: 16px;">Bulk Deletion Records</div>
|
234 |
-
</li>
|
235 |
-
</ul>
|
236 |
-
<div class="gw-go-footer-wrap">
|
237 |
-
<div class="gw-go-footer-spacer"></div>
|
238 |
-
<div class="gw-go-footer">
|
239 |
-
<div class="gw-go-footer-rows">
|
240 |
-
<div class="gw-go-footer-row" data-row-index="0">
|
241 |
-
<div class="gw-go-footer-row-inner" style="height: 44px;"><a href="http://beta.tech-banker.com/product/mail-bank-business-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div>
|
242 |
-
</div>
|
243 |
-
<div class="gw-go-footer-row gw-go-even" data-row-index="1">
|
244 |
-
<div class="gw-go-footer-row-inner" style="height: 0px;"></div>
|
245 |
-
</div>
|
246 |
-
<div class="gw-go-footer-row" data-row-index="2">
|
247 |
-
<div class="gw-go-footer-row-inner" style="height: 10px;"> </div>
|
248 |
-
</div>
|
249 |
-
</div>
|
250 |
-
</div>
|
251 |
-
</div>
|
252 |
-
</div>
|
253 |
-
<div class="gw-go-tooltip"></div>
|
254 |
-
</div>
|
255 |
-
</div>
|
256 |
-
<div class="gw-go-col-wrap gw-go-col-wrap-2 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="2" style="height: 600px;">
|
257 |
-
<div class="gw-go-col gw-go-clean-style14">
|
258 |
-
<div class="gw-go-col-inner">
|
259 |
-
<div class="gw-go-col-inner-layer"></div>
|
260 |
-
<div class="gw-go-col-inner-layer-over"></div>
|
261 |
-
<div class="gw-go-header"></div>
|
262 |
-
<ul class="gw-go-body">
|
263 |
-
<li data-row-index="0">
|
264 |
-
<div class="gw-go-body-cell" style="height: 79px;"><span style="font-size:20px;"><br>DEVELOPER</span>
|
265 |
-
<br>Ideal for Webmasters
|
266 |
-
</div>
|
267 |
-
</li>
|
268 |
-
<li class="gw-go-even" data-row-index="1">
|
269 |
-
<div class="gw-go-body-cell" style="height: 16px;">____</div>
|
270 |
-
</li>
|
271 |
-
<li data-row-index="2">
|
272 |
-
<div class="gw-go-body-cell" style="height: 75px;"><span style="color:#A4CD39;">€</span><span style="font-size:52px;color:#A4CD39;">82<br></span><span style="color:#A4CD39;">It's a one time purchase.</span></div>
|
273 |
-
</li>
|
274 |
-
<li class="gw-go-even" data-row-index="3">
|
275 |
-
<div class="gw-go-body-cell" style="height: 16px;"><strong>5 Installations per License</strong></div>
|
276 |
-
</li>
|
277 |
-
<li data-row-index="4">
|
278 |
-
<div class="gw-go-body-cell" style="height: 16px;"><strong>6 months of Technical Support</strong></div>
|
279 |
-
</li>
|
280 |
-
<li class="gw-go-even" data-row-index="5">
|
281 |
-
<div class="gw-go-body-cell" style="height: 16px;"><strong>Life Time Free Updates</strong></div>
|
282 |
-
</li>
|
283 |
-
<li data-row-index="6">
|
284 |
-
<div class="gw-go-body-cell" style="height: 16px;">Automatic Plugin Updates</div>
|
285 |
-
</li>
|
286 |
-
<li data-row-index="6">
|
287 |
-
<div class="gw-go-body-cell" style="height: 16px;">Compatibility With Major Plugins</div>
|
288 |
-
</li>
|
289 |
-
<li data-row-index="6">
|
290 |
-
<div class="gw-go-body-cell" style="height: 16px;">Setup Wizard</div>
|
291 |
-
</li>
|
292 |
-
<li data-row-index="6">
|
293 |
-
<div class="gw-go-body-cell" style="height: 16px;">Email Setup</div>
|
294 |
-
</li>
|
295 |
-
<li data-row-index="6">
|
296 |
-
<div class="gw-go-body-cell" style="height: 16px;">Mailer Types</div>
|
297 |
-
</li>
|
298 |
-
<li data-row-index="6">
|
299 |
-
<div class="gw-go-body-cell" style="height: 16px;">SMTP Settings</div>
|
300 |
-
</li>
|
301 |
-
<li data-row-index="6">
|
302 |
-
<div class="gw-go-body-cell" style="height: 16px;">OAuth 2.0 Authentication</div>
|
303 |
-
</li>
|
304 |
-
<li data-row-index="6">
|
305 |
-
<div class="gw-go-body-cell" style="height: 16px;">Test Emails</div>
|
306 |
-
</li>
|
307 |
-
<li data-row-index="6">
|
308 |
-
<div class="gw-go-body-cell" style="height: 16px;">Debug Mode</div>
|
309 |
-
</li>
|
310 |
-
<li data-row-index="6">
|
311 |
-
<div class="gw-go-body-cell" style="height: 16px;">Connectivity Test</div>
|
312 |
-
</li>
|
313 |
-
<li data-row-index="6">
|
314 |
-
<div class="gw-go-body-cell" style="height: 16px;">Different Authentication Parameters</div>
|
315 |
-
</li>
|
316 |
-
<li data-row-index="6">
|
317 |
-
<div class="gw-go-body-cell" style="height: 16px;">Various Encryption Methods</div>
|
318 |
-
</li>
|
319 |
-
<li data-row-index="6">
|
320 |
-
<div class="gw-go-body-cell" style="height: 16px;">Plugin Settings</div>
|
321 |
-
</li>
|
322 |
-
<li data-row-index="6">
|
323 |
-
<div class="gw-go-body-cell" style="height: 16px;">Error Logs</div>
|
324 |
-
</li>
|
325 |
-
<li data-row-index="6">
|
326 |
-
<div class="gw-go-body-cell" style="height: 16px;">Roles & Capabilities</div>
|
327 |
-
</li>
|
328 |
-
<li data-row-index="6">
|
329 |
-
<div class="gw-go-body-cell" style="height: 16px;">Email Logs</div>
|
330 |
-
</li>
|
331 |
-
<li class="gw-go-even" data-row-index="7">
|
332 |
-
<div class="gw-go-body-cell" style="height: 16px;">Bulk Deletion Records</div>
|
333 |
-
</li>
|
334 |
-
</ul>
|
335 |
-
<div class="gw-go-footer-wrap">
|
336 |
-
<div class="gw-go-footer-spacer"></div>
|
337 |
-
<div class="gw-go-footer">
|
338 |
-
<div class="gw-go-footer-rows">
|
339 |
-
<div class="gw-go-footer-row" data-row-index="0">
|
340 |
-
<div class="gw-go-footer-row-inner" style="height: 44px;"><a href="http://beta.tech-banker.com/product/mail-bank-developer-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div>
|
341 |
-
</div>
|
342 |
-
<div class="gw-go-footer-row gw-go-even" data-row-index="1">
|
343 |
-
<div class="gw-go-footer-row-inner" style="height: 0px;"></div>
|
344 |
-
</div>
|
345 |
-
<div class="gw-go-footer-row" data-row-index="2">
|
346 |
-
<div class="gw-go-footer-row-inner" style="height: 10px;"> </div>
|
347 |
-
</div>
|
348 |
-
</div>
|
349 |
-
</div>
|
350 |
-
</div>
|
351 |
-
</div>
|
352 |
-
</div>
|
353 |
-
</div>
|
354 |
</div>
|
355 |
</div>
|
356 |
</div>
|
357 |
-
</div>
|
358 |
</form>
|
359 |
</div>
|
360 |
</div>
|
52 |
<form id="ux_frm_premium_editions">
|
53 |
<div class="form-body">
|
54 |
<div class="wpb_wrapper">
|
55 |
+
<div class="wpb_text_column wpb_content_element ">
|
56 |
+
<div class="wpb_wrapper">
|
57 |
+
<style type="text/css">#go-pricing-table-132 .gw-go { margin-left:-30px; } #go-pricing-table-132 .gw-go-col { margin-left:30px; } #go-pricing-table-132 .gw-go-col-wrap { min-width:130px; } #go-pricing-table-132 .gw-go-col-inner { border-radius:8px 8px 8px 8px; } #go-pricing-table-132 ul.gw-go-body, #go-pricing-table-132 ul.gw-go-body li { border:none !important; padding-top:1px; } #go-pricing-table-132 ul.gw-go-body li .gw-go-body-cell { padding-top:1px; } #go-pricing-table-132 ul.gw-go-body { padding-bottom:1px; } #go-pricing-table-132 .gw-go-tooltip-content { background-color:#9d9d9d;color:#333333;max-width:130px; } #go-pricing-table-132 .gw-go-tooltip:before { border-top-color:#9d9d9d; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-header, #go-pricing-table-132 .gw-go-col-wrap-0.gw-go-hover .gw-go-header-bottom, #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li .gw-go-body-cell:before, #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-btn { background-color:#686868; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-price-wrap span, #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-coinf div, #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-coinb div { color:#686868; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-header h3 { font-size:22px !important; line-height:24px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-price-wrap > span{ font-size:55px !important; line-height:60px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-price-wrap small { font-size:16px !important; line-height:18px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="0"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="1"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="2"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="3"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="4"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="5"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="6"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="7"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="8"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="9"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="10"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="11"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="12"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="13"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="14"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="15"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="16"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="17"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="18"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="19"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="20"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="21"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="22"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="23"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="24"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="25"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { font-size:14px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { background-color:#686868 !important; color:#ffffff !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-header, #go-pricing-table-132 .gw-go-col-wrap-1.gw-go-hover .gw-go-header-bottom, #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li .gw-go-body-cell:before, #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-btn { background-color:#3c787e; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-price-wrap span, #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-coinf div, #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-coinb div { color:#3c787e; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-header h3 { font-size:22px !important; line-height:24px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-price-wrap > span{ font-size:55px !important; line-height:60px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-price-wrap small { font-size:16px !important; line-height:18px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="0"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="1"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="2"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="3"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="4"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="5"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="6"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="7"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="8"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="9"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="10"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="11"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="12"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="13"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="14"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="15"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="16"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="17"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="18"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="19"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="20"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="21"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="22"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="23"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="24"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="25"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { font-size:14px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { background-color:#3c787e !important; color:#ffffff !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-header, #go-pricing-table-132 .gw-go-col-wrap-2.gw-go-hover .gw-go-header-bottom, #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li .gw-go-body-cell:before, #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-btn { background-color:#ec4a3d; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-price-wrap span, #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-coinf div, #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-coinb div { color:#ec4a3d; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-header h3 { font-size:22px !important; line-height:24px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-price-wrap > span{ font-size:55px !important; line-height:60px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-price-wrap small { font-size:16px !important; line-height:18px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="0"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="1"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="2"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="3"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="4"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="5"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="6"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="7"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="8"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="9"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="10"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="11"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="12"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="13"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="14"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="15"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="16"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="17"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="18"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="19"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="20"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="21"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="22"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="23"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="24"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="25"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { font-size:14px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { background-color:#ec4a3d !important; color:#ffffff !important; } #go-pricing-table-132 .gw-go { visibility:inherit; }</style><style>@media only screen and (min-width: 480px) and (max-width: 767px) { #go-pricing-table-132 .gw-go-col-wrap { width:50%; } }</style><style>@media only screen and (max-width: 479px) { #go-pricing-table-132 .gw-go-col-wrap { width:100%; } }</style><div id="go-pricing-table-132" class="go-pricing" style="margin-bottom:20px;"><div class="gw-go gw-go-clearfix gw-go-enlarge-current gw-go-disable-box-shadow gw-go-3cols" data-id="132" data-colnum="3" data-equalize="{"column":1,"body":1,"footer":1}" data-views="{"tp":{"min":"768","max":"959","cols":""},"ml":{"min":"480","max":"767","cols":"2"},"mp":{"min":"","max":"479","cols":"1"}}" style="opacity: 1;"><div class="gw-go-col-wrap gw-go-col-wrap-0 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="0" style="max-width: 409px; height: 1281px;"><div class="gw-go-col gw-go-clean-style5"><div class="gw-go-col-inner"><div class="gw-go-col-inner-layer"></div><div class="gw-go-col-inner-layer-over"></div><div class="gw-go-header gw-go-header-standard"><div class="gw-go-header-top"><h3>PERSONAL</h3></div><div class="gw-go-header-bottom"><div class="gw-go-price-wrap"><span data-id="price" data-currency="{"currency":"USD","position":"left","thousand-sep":",","decimal-sep":".","decimal-no":"2","symbol":""}" data-price="9"><span data-id="currency">$</span><span data-id="amount">9</span></span><small></small></div></div></div><ul class="gw-go-body"><li data-row-index="0"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="1"><div class="gw-go-body-cell" style="height: 22px;">PRO SUPPORT</div></li><li data-row-index="2"><div class="gw-go-body-cell" style="height: 38px;">Support & Updates for 1 Installation</div></li><li class="gw-go-even" data-row-index="3"><div class="gw-go-body-cell" style="height: 19px;">24x7 Technical Support</div></li><li data-row-index="4"><div class="gw-go-body-cell" style="height: 19px;">Free Updates until Subscription</div></li><li class="gw-go-even" data-row-index="5"><div class="gw-go-body-cell" style="height: 19px;">Automatic Plugin Updates</div></li><li data-row-index="6"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="7"><div class="gw-go-body-cell" style="height: 22px;">MAIN FEATURES</div></li><li data-row-index="8"><div class="gw-go-body-cell" style="height: 19px;">Compatibility with Major Plugins</div></li><li class="gw-go-even" data-row-index="9"><div class="gw-go-body-cell" style="height: 19px;">Setup Wizard</div></li><li data-row-index="10"><div class="gw-go-body-cell" style="height: 19px;">Email Setup</div></li><li class="gw-go-even" data-row-index="11"><div class="gw-go-body-cell" style="height: 19px;">Mailer Types</div></li><li data-row-index="12"><div class="gw-go-body-cell" style="height: 19px;">SMTP Settings</div></li><li class="gw-go-even" data-row-index="13"><div class="gw-go-body-cell" style="height: 19px;">OAuth 2.0 Authentication</div></li><li data-row-index="14"><div class="gw-go-body-cell" style="height: 19px;">Test Emails</div></li><li class="gw-go-even" data-row-index="15"><div class="gw-go-body-cell" style="height: 19px;">Debug Mode</div></li><li data-row-index="16"><div class="gw-go-body-cell" style="height: 19px;">Connectivity Test</div></li><li class="gw-go-even" data-row-index="17"><div class="gw-go-body-cell" style="height: 19px;">Different Authentication Parameters</div></li><li data-row-index="18"><div class="gw-go-body-cell" style="height: 19px;">Various Encryption Methods</div></li><li class="gw-go-even" data-row-index="19"><div class="gw-go-body-cell" style="height: 19px;">Plugin Settings</div></li><li data-row-index="20"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li class="gw-go-even" data-row-index="21"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="22"><div class="gw-go-body-cell" style="height: 22px;">OTHER SETTINGS</div></li><li class="gw-go-even" data-row-index="23"><div class="gw-go-body-cell" style="height: 19px;">Feedbacks</div></li><li data-row-index="24"><div class="gw-go-body-cell" style="height: 19px;">Roles & Capabilities</div></li><li class="gw-go-even" data-row-index="25"><div class="gw-go-body-cell" style="height: 19px;">-</div></li></ul><div class="gw-go-footer-wrap"><div class="gw-go-footer-spacer"></div><div class="gw-go-footer"><div class="gw-go-footer-rows"><div class="gw-go-footer-row" data-row-index="0"><div class="gw-go-footer-row-inner" style="height: 44px;"><a href="https://mail-bank.tech-banker.com/product/personal-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div></div></div></div></div></div><div class="gw-go-tooltip"></div></div></div><div class="gw-go-col-wrap gw-go-col-wrap-1 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="1" style="max-width: 409px; height: 1281px;"><div class="gw-go-col gw-go-clean-style5"><div class="gw-go-col-inner"><div class="gw-go-col-inner-layer"></div><div class="gw-go-col-inner-layer-over"></div><div class="gw-go-ribbon-left"><img src="https://mail-bank.tech-banker.com/wp-content/plugins/go_pricing/assets/images/signs/ribbons/clean/ribbon_red_left_top.png" alt=""></div><div class="gw-go-header gw-go-header-standard"><div class="gw-go-header-top"><h3>BUSINESS</h3></div><div class="gw-go-header-bottom"><div class="gw-go-price-wrap"><span data-id="price" data-currency="{"currency":"USD","position":"left","thousand-sep":",","decimal-sep":".","decimal-no":"2","symbol":""}" data-price="19"><span data-id="currency">$</span><span data-id="amount">19</span></span><small></small></div></div></div><ul class="gw-go-body"><li data-row-index="0"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="1"><div class="gw-go-body-cell" style="height: 22px;">PRO SUPPORT</div></li><li data-row-index="2"><div class="gw-go-body-cell" style="height: 38px;">Support & Updates for 1 Installation</div></li><li class="gw-go-even" data-row-index="3"><div class="gw-go-body-cell" style="height: 19px;">24x7 Technical Support</div></li><li data-row-index="4"><div class="gw-go-body-cell" style="height: 19px;">Free Updates until Subscription</div></li><li class="gw-go-even" data-row-index="5"><div class="gw-go-body-cell" style="height: 19px;">Automatic Plugin Updates</div></li><li data-row-index="6"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="7"><div class="gw-go-body-cell" style="height: 22px;">MAIN FEATURES</div></li><li data-row-index="8"><div class="gw-go-body-cell" style="height: 19px;">Compatibility with Major Plugins</div></li><li class="gw-go-even" data-row-index="9"><div class="gw-go-body-cell" style="height: 19px;">Setup Wizard</div></li><li data-row-index="10"><div class="gw-go-body-cell" style="height: 19px;">Email Setup</div></li><li class="gw-go-even" data-row-index="11"><div class="gw-go-body-cell" style="height: 19px;">Mailer Types</div></li><li data-row-index="12"><div class="gw-go-body-cell" style="height: 19px;">SMTP Settings</div></li><li class="gw-go-even" data-row-index="13"><div class="gw-go-body-cell" style="height: 19px;">OAuth 2.0 Authentication</div></li><li data-row-index="14"><div class="gw-go-body-cell" style="height: 19px;">Test Emails</div></li><li class="gw-go-even" data-row-index="15"><div class="gw-go-body-cell" style="height: 19px;">Debug Mode</div></li><li data-row-index="16"><div class="gw-go-body-cell" style="height: 19px;">Connectivity Test</div></li><li class="gw-go-even" data-row-index="17"><div class="gw-go-body-cell" style="height: 19px;">Different Authentication Parameters</div></li><li data-row-index="18"><div class="gw-go-body-cell" style="height: 19px;">Various Encryption Methods</div></li><li class="gw-go-even" data-row-index="19"><div class="gw-go-body-cell" style="height: 19px;">Plugin Settings</div></li><li data-row-index="20"><div class="gw-go-body-cell" style="height: 19px;">Email Logs</div></li><li class="gw-go-even" data-row-index="21"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="22"><div class="gw-go-body-cell" style="height: 22px;">OTHER SETTINGS</div></li><li class="gw-go-even" data-row-index="23"><div class="gw-go-body-cell" style="height: 19px;">Feedbacks</div></li><li data-row-index="24"><div class="gw-go-body-cell" style="height: 19px;">Roles & Capabilities</div></li><li class="gw-go-even" data-row-index="25"><div class="gw-go-body-cell" style="height: 19px;">Bulk Deletion of Records</div></li></ul><div class="gw-go-footer-wrap"><div class="gw-go-footer-spacer"></div><div class="gw-go-footer"><div class="gw-go-footer-rows"><div class="gw-go-footer-row" data-row-index="0"><div class="gw-go-footer-row-inner" style="height: 44px;"><a href="https://mail-bank.tech-banker.com/product/business-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div></div></div></div></div></div><div class="gw-go-tooltip"></div></div></div><div class="gw-go-col-wrap gw-go-col-wrap-2 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="2" style="max-width: 409px; height: 1281px;"><div class="gw-go-col gw-go-clean-style5"><div class="gw-go-col-inner"><div class="gw-go-col-inner-layer"></div><div class="gw-go-col-inner-layer-over"></div><div class="gw-go-header gw-go-header-standard"><div class="gw-go-header-top"><h3>DEVELOPER</h3></div><div class="gw-go-header-bottom"><div class="gw-go-price-wrap"><span data-id="price" data-currency="{"currency":"USD","position":"left","thousand-sep":",","decimal-sep":".","decimal-no":"2","symbol":""}" data-price="81"><span data-id="currency">$</span><span data-id="amount">81</span></span><small></small></div></div></div><ul class="gw-go-body"><li data-row-index="0"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="1"><div class="gw-go-body-cell" style="height: 22px;">PRO SUPPORT</div></li><li data-row-index="2"><div class="gw-go-body-cell" style="height: 38px;">Support & Updates for 5 Installations</div></li><li class="gw-go-even" data-row-index="3"><div class="gw-go-body-cell" style="height: 19px;">24x7 Technical Support</div></li><li data-row-index="4"><div class="gw-go-body-cell" style="height: 19px;">Free Updates until Subscription</div></li><li class="gw-go-even" data-row-index="5"><div class="gw-go-body-cell" style="height: 19px;">Automatic Plugin Updates</div></li><li data-row-index="6"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="7"><div class="gw-go-body-cell" style="height: 22px;">MAIN FEATURES</div></li><li data-row-index="8"><div class="gw-go-body-cell" style="height: 19px;">Compatibility with Major Plugins</div></li><li class="gw-go-even" data-row-index="9"><div class="gw-go-body-cell" style="height: 19px;">Setup Wizard</div></li><li data-row-index="10"><div class="gw-go-body-cell" style="height: 19px;">Email Setup</div></li><li class="gw-go-even" data-row-index="11"><div class="gw-go-body-cell" style="height: 19px;">Mailer Types</div></li><li data-row-index="12"><div class="gw-go-body-cell" style="height: 19px;">SMTP Settings</div></li><li class="gw-go-even" data-row-index="13"><div class="gw-go-body-cell" style="height: 19px;">OAuth 2.0 Authentication</div></li><li data-row-index="14"><div class="gw-go-body-cell" style="height: 19px;">Test Emails</div></li><li class="gw-go-even" data-row-index="15"><div class="gw-go-body-cell" style="height: 19px;">Debug Mode</div></li><li data-row-index="16"><div class="gw-go-body-cell" style="height: 19px;">Connectivity Test</div></li><li class="gw-go-even" data-row-index="17"><div class="gw-go-body-cell" style="height: 19px;">Different Authentication Parameters</div></li><li data-row-index="18"><div class="gw-go-body-cell" style="height: 19px;">Various Encryption Methods</div></li><li class="gw-go-even" data-row-index="19"><div class="gw-go-body-cell" style="height: 19px;">Plugin Settings</div></li><li data-row-index="20"><div class="gw-go-body-cell" style="height: 19px;">Email Logs</div></li><li class="gw-go-even" data-row-index="21"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="22"><div class="gw-go-body-cell" style="height: 22px;">OTHER SETTINGS</div></li><li class="gw-go-even" data-row-index="23"><div class="gw-go-body-cell" style="height: 19px;">Feedbacks</div></li><li data-row-index="24"><div class="gw-go-body-cell" style="height: 19px;">Roles & Capabilities</div></li><li class="gw-go-even" data-row-index="25"><div class="gw-go-body-cell" style="height: 19px;">Bulk Deletion of Records</div></li></ul><div class="gw-go-footer-wrap"><div class="gw-go-footer-spacer"></div><div class="gw-go-footer"><div class="gw-go-footer-rows"><div class="gw-go-footer-row" data-row-index="0"><div class="gw-go-footer-row-inner" style="height: 44px;"><a href="https://mail-bank.tech-banker.com/product/developer-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div></div></div></div></div></div><div class="gw-go-tooltip"></div></div></div></div></div>
|
58 |
+
|
59 |
+
</div>
|
60 |
+
</div>
|
61 |
+
|
62 |
+
<div class="wpb_text_column wpb_content_element vc_custom_1502873689597">
|
63 |
+
<div class="wpb_wrapper">
|
64 |
+
<h3 style="text-align: center;">Fast. Easy. Secure.</h3>
|
65 |
+
|
66 |
+
</div>
|
67 |
+
</div>
|
68 |
+
|
69 |
+
<div class="wpb_text_column wpb_content_element vc_custom_1502873716241">
|
70 |
+
<div class="wpb_wrapper">
|
71 |
+
<h4 style="text-align: center;">This payment recurs annually.</h4>
|
72 |
+
|
73 |
+
</div>
|
74 |
+
</div>
|
75 |
+
|
76 |
+
<div class="wpb_text_column wpb_content_element ">
|
77 |
+
<div class="wpb_wrapper">
|
78 |
+
<p style="text-align: center;">Your initial payment gives you lifetime rights to use Mail Bank Premium Editions, while annual renewals give you ongoing access to updates and support. You can cancel anytime and use the plugin forever, but you’ll lose access to support and updates when your membership expires.</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
</div>
|
80 |
</div>
|
81 |
</div>
|
|
|
82 |
</form>
|
83 |
</div>
|
84 |
</div>
|
views/roles-and-capabilities/roles-and-capabilities.php
CHANGED
@@ -53,7 +53,7 @@ if (!is_user_logged_in()) {
|
|
53 |
<i class="icon-custom-user"></i>
|
54 |
<?php echo $mb_roles_and_capabilities; ?>
|
55 |
</div>
|
56 |
-
<a href="
|
57 |
</div>
|
58 |
<div class="portlet-body form">
|
59 |
<form id="ux_frm_roles_and_capabilities">
|
53 |
<i class="icon-custom-user"></i>
|
54 |
<?php echo $mb_roles_and_capabilities; ?>
|
55 |
</div>
|
56 |
+
<a href="https://mail-bank.tech-banker.com/" target="_blank" class="premium-editions"><?php echo $mb_upgrade_to ?></a>
|
57 |
</div>
|
58 |
<div class="portlet-body form">
|
59 |
<form id="ux_frm_roles_and_capabilities">
|
views/settings/settings.php
CHANGED
@@ -48,7 +48,7 @@ if (!is_user_logged_in()) {
|
|
48 |
<i class="icon-custom-paper-clip"></i>
|
49 |
<?php echo $mb_settings; ?>
|
50 |
</div>
|
51 |
-
<a href="
|
52 |
</div>
|
53 |
<div class="portlet-body form">
|
54 |
<form id="ux_frm_settings">
|
48 |
<i class="icon-custom-paper-clip"></i>
|
49 |
<?php echo $mb_settings; ?>
|
50 |
</div>
|
51 |
+
<a href="https://mail-bank.tech-banker.com/" target="_blank" class="premium-editions"><?php echo $mb_upgrade_to ?></a>
|
52 |
</div>
|
53 |
<div class="portlet-body form">
|
54 |
<form id="ux_frm_settings">
|
views/system-information/system-information.php
CHANGED
@@ -47,7 +47,7 @@ if (!is_user_logged_in()) {
|
|
47 |
<i class="icon-custom-screen-desktop"></i>
|
48 |
<?php echo $mb_system_information; ?>
|
49 |
</div>
|
50 |
-
<a href="
|
51 |
</div>
|
52 |
<div class="portlet-body form">
|
53 |
<form id="ux_frm_system_information">
|
47 |
<i class="icon-custom-screen-desktop"></i>
|
48 |
<?php echo $mb_system_information; ?>
|
49 |
</div>
|
50 |
+
<a href="https://mail-bank.tech-banker.com/" target="_blank" class="premium-editions"><?php echo $mb_upgrade_to ?></a>
|
51 |
</div>
|
52 |
<div class="portlet-body form">
|
53 |
<form id="ux_frm_system_information">
|
views/test-email/test-email.php
CHANGED
@@ -48,7 +48,7 @@ if (!is_user_logged_in()) {
|
|
48 |
<i class="icon-custom-envelope"></i>
|
49 |
<?php echo $mb_test_email; ?>
|
50 |
</div>
|
51 |
-
<a href="
|
52 |
</div>
|
53 |
<div class="portlet-body form">
|
54 |
<div class="form-body">
|
@@ -93,7 +93,7 @@ if (!is_user_logged_in()) {
|
|
93 |
</label>
|
94 |
<?php
|
95 |
$email_configuration = "This is a demo Test Email for Email Setup - Mail Bank";
|
96 |
-
wp_editor($email_configuration,
|
97 |
?>
|
98 |
<textarea id="ux_email_configuration_text_area" name="ux_email_configuration_text_area" style="display: none;"></textarea>
|
99 |
</div>
|
48 |
<i class="icon-custom-envelope"></i>
|
49 |
<?php echo $mb_test_email; ?>
|
50 |
</div>
|
51 |
+
<a href="https://mail-bank.tech-banker.com/" target="_blank" class="premium-editions"><?php echo $mb_upgrade_to ?></a>
|
52 |
</div>
|
53 |
<div class="portlet-body form">
|
54 |
<div class="form-body">
|
93 |
</label>
|
94 |
<?php
|
95 |
$email_configuration = "This is a demo Test Email for Email Setup - Mail Bank";
|
96 |
+
wp_editor($email_configuration, 'ux_content', array('teeny' => TRUE, 'textarea_name' => 'description', 'media_buttons' => FALSE, 'textarea_rows' => 5));
|
97 |
?>
|
98 |
<textarea id="ux_email_configuration_text_area" name="ux_email_configuration_text_area" style="display: none;"></textarea>
|
99 |
</div>
|
views/wizard/wizard.php
CHANGED
@@ -100,305 +100,24 @@ if (!is_user_logged_in()) {
|
|
100 |
<form id="ux_frm_premium_editions">
|
101 |
<div class="form-body">
|
102 |
<div class="wpb_wrapper">
|
103 |
-
<div
|
104 |
-
<div class="
|
105 |
-
<div class="gw-go-col-wrap gw-go-col-wrap-0 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="0" style="height: 1150;">
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
<div class="gw-go-body-cell" style="height: 75px;"><span style="color:#A4CD39;">€</span><span style="font-size:52px;color:#A4CD39;">10<br></span><span style="color:#A4CD39;">It's a one time purchase.</span></div>
|
122 |
-
</li>
|
123 |
-
<li class="gw-go-even" data-row-index="3">
|
124 |
-
<div class="gw-go-body-cell" style="height: 16px;"><strong>1 Installation per License</strong></div>
|
125 |
-
</li>
|
126 |
-
<li data-row-index="4">
|
127 |
-
<div class="gw-go-body-cell" style="height: 16px;"><strong>1 week of Technical Support</strong></div>
|
128 |
-
</li>
|
129 |
-
<li class="gw-go-even" data-row-index="5">
|
130 |
-
<div class="gw-go-body-cell" style="height: 16px;"><strong>1 year of Free Updates</strong></div>
|
131 |
-
</li>
|
132 |
-
<li class="gw-go-even" data-row-index="6">
|
133 |
-
<div class="gw-go-body-cell" style="height: 16px;">Automatic Plugin Updates</div>
|
134 |
-
</li>
|
135 |
-
<li class="gw-go-even" data-row-index="7">
|
136 |
-
<div class="gw-go-body-cell" style="height: 16px;">Compatibility With Major Plugins</div>
|
137 |
-
</li>
|
138 |
-
<li class="gw-go-even" data-row-index="8">
|
139 |
-
<div class="gw-go-body-cell" style="height: 16px;">Setup Wizard</div>
|
140 |
-
</li>
|
141 |
-
<li class="gw-go-even" data-row-index="9">
|
142 |
-
<div class="gw-go-body-cell" style="height: 16px;">Email Setup</div>
|
143 |
-
</li>
|
144 |
-
<li class="gw-go-even" data-row-index="10">
|
145 |
-
<div class="gw-go-body-cell" style="height: 16px;">Mailer Types</div>
|
146 |
-
</li>
|
147 |
-
<li class="gw-go-even" data-row-index="11">
|
148 |
-
<div class="gw-go-body-cell" style="height: 16px;">SMTP Settings</div>
|
149 |
-
</li>
|
150 |
-
<li class="gw-go-even" data-row-index="12">
|
151 |
-
<div class="gw-go-body-cell" style="height: 16px;">OAuth 2.0 Authentication</div>
|
152 |
-
</li>
|
153 |
-
<li class="gw-go-even" data-row-index="13">
|
154 |
-
<div class="gw-go-body-cell" style="height: 16px;">Test Emails</div>
|
155 |
-
</li>
|
156 |
-
<li class="gw-go-even" data-row-index="14">
|
157 |
-
<div class="gw-go-body-cell" style="height: 16px;">Debug Mode</div>
|
158 |
-
</li>
|
159 |
-
<li class="gw-go-even" data-row-index="15">
|
160 |
-
<div class="gw-go-body-cell" style="height: 16px;">Connectivity Test</div>
|
161 |
-
</li>
|
162 |
-
<li class="gw-go-even" data-row-index="16">
|
163 |
-
<div class="gw-go-body-cell" style="height: 16px;">Different Authentication Parameters</div>
|
164 |
-
</li>
|
165 |
-
<li data-row-index="17">
|
166 |
-
<div class="gw-go-body-cell" style="height: 16px;">Various Encryption Methods</div>
|
167 |
-
</li>
|
168 |
-
<li data-row-index="18">
|
169 |
-
<div class="gw-go-body-cell" style="height: 16px;">Plugin Settings</div>
|
170 |
-
</li>
|
171 |
-
<li data-row-index="19">
|
172 |
-
<div class="gw-go-body-cell" style="height: 16px;">Error Logs</div>
|
173 |
-
</li>
|
174 |
-
<li data-row-index="20">
|
175 |
-
<div class="gw-go-body-cell" style="height: 16px;">Roles & Capabilities</div>
|
176 |
-
</li>
|
177 |
-
<li data-row-index="21">
|
178 |
-
<div class="gw-go-body-cell" style="height: 16px;">____</div>
|
179 |
-
</li>
|
180 |
-
<li data-row-index="22">
|
181 |
-
<div class="gw-go-body-cell" style="height: 16px;">____</div>
|
182 |
-
</li>
|
183 |
-
</ul>
|
184 |
-
<div class="gw-go-footer-wrap">
|
185 |
-
<div class="gw-go-footer-spacer"></div>
|
186 |
-
<div class="gw-go-footer">
|
187 |
-
<div class="gw-go-footer-rows">
|
188 |
-
<div class="gw-go-footer-row" data-row-index="0">
|
189 |
-
<div class="gw-go-footer-row-inner" style="height: 44px;"><a href="http://beta.tech-banker.com/product/mail-bank-personal-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div>
|
190 |
-
</div>
|
191 |
-
<div class="gw-go-footer-row gw-go-even" data-row-index="1">
|
192 |
-
<div class="gw-go-footer-row-inner" style="height: 0px;"></div>
|
193 |
-
</div>
|
194 |
-
<div class="gw-go-footer-row" data-row-index="2">
|
195 |
-
<div class="gw-go-footer-row-inner" style="height: 10px;"> </div>
|
196 |
-
</div>
|
197 |
-
</div>
|
198 |
-
</div>
|
199 |
-
</div>
|
200 |
-
</div>
|
201 |
-
<div class="gw-go-tooltip"></div>
|
202 |
-
</div>
|
203 |
-
</div>
|
204 |
-
<div class="gw-go-col-wrap gw-go-col-wrap-1 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="1" style="height: 600px;">
|
205 |
-
<div class="gw-go-col gw-go-clean-style14">
|
206 |
-
<div class="gw-go-col-inner">
|
207 |
-
<div class="gw-go-col-inner-layer"></div>
|
208 |
-
<div class="gw-go-col-inner-layer-over"></div>
|
209 |
-
<div class="gw-go-ribbon-right"><img src='<?php echo plugins_url("assets/global/img/ribbon_green_right_top.png", dirname(dirname(__FILE__))) ?>'></div>
|
210 |
-
<div class="gw-go-header"></div>
|
211 |
-
<ul class="gw-go-body">
|
212 |
-
<li data-row-index="0">
|
213 |
-
<div class="gw-go-body-cell" style="height: 79px;"><span style="font-size:20px;"><br>BUSINESS</span>
|
214 |
-
<br>Ideal for Businesses
|
215 |
-
</div>
|
216 |
-
</li>
|
217 |
-
<li class="gw-go-even" data-row-index="1">
|
218 |
-
<div class="gw-go-body-cell" style="height: 16px;">____</div>
|
219 |
-
</li>
|
220 |
-
<li data-row-index="2">
|
221 |
-
<div class="gw-go-body-cell" style="height: 75px;"><span style="color:#A4CD39;">€</span><span style="font-size:52px;color:#A4CD39;">19<br></span><span style="color:#A4CD39;">It's a one time purchase.</span></div>
|
222 |
-
</li>
|
223 |
-
<li class="gw-go-even" data-row-index="3">
|
224 |
-
<div class="gw-go-body-cell" style="height: 16px;"><strong>1 Installation per License</strong></div>
|
225 |
-
</li>
|
226 |
-
<li data-row-index="4">
|
227 |
-
<div class="gw-go-body-cell" style="height: 16px;"><strong>1 month of Technical Support</strong></div>
|
228 |
-
</li>
|
229 |
-
<li class="gw-go-even" data-row-index="5">
|
230 |
-
<div class="gw-go-body-cell" style="height: 16px;"><strong>1 year of Free Updates</strong></div>
|
231 |
-
</li>
|
232 |
-
<li data-row-index="6">
|
233 |
-
<div class="gw-go-body-cell" style="height: 16px;">Automatic Plugin Updates</div>
|
234 |
-
</li>
|
235 |
-
<li data-row-index="7">
|
236 |
-
<div class="gw-go-body-cell" style="height: 16px;">Compatibility With Major Plugins</div>
|
237 |
-
</li>
|
238 |
-
<li data-row-index="8">
|
239 |
-
<div class="gw-go-body-cell" style="height: 16px;">Setup Wizard</div>
|
240 |
-
</li>
|
241 |
-
<li data-row-index="9">
|
242 |
-
<div class="gw-go-body-cell" style="height: 16px;">Email Setup</div>
|
243 |
-
</li>
|
244 |
-
<li data-row-index="10">
|
245 |
-
<div class="gw-go-body-cell" style="height: 16px;">Mailer Types</div>
|
246 |
-
</li>
|
247 |
-
<li data-row-index="6">
|
248 |
-
<div class="gw-go-body-cell" style="height: 16px;">SMTP Settings</div>
|
249 |
-
</li>
|
250 |
-
<li data-row-index="11">
|
251 |
-
<div class="gw-go-body-cell" style="height: 16px;">OAuth 2.0 Authentication</div>
|
252 |
-
</li>
|
253 |
-
<li data-row-index="12">
|
254 |
-
<div class="gw-go-body-cell" style="height: 16px;">Test Emails</div>
|
255 |
-
</li>
|
256 |
-
<li data-row-index="13">
|
257 |
-
<div class="gw-go-body-cell" style="height: 16px;">Debug Mode</div>
|
258 |
-
</li>
|
259 |
-
<li data-row-index="14">
|
260 |
-
<div class="gw-go-body-cell" style="height: 16px;">Connectivity Test</div>
|
261 |
-
</li>
|
262 |
-
<li data-row-index="15">
|
263 |
-
<div class="gw-go-body-cell" style="height: 16px;">Different Authentication Parameters</div>
|
264 |
-
</li>
|
265 |
-
<li data-row-index="15">
|
266 |
-
<div class="gw-go-body-cell" style="height: 16px;">Various Encryption Methods</div>
|
267 |
-
</li>
|
268 |
-
<li data-row-index="15">
|
269 |
-
<div class="gw-go-body-cell" style="height: 16px;">Plugin Settings</div>
|
270 |
-
</li>
|
271 |
-
<li data-row-index="15">
|
272 |
-
<div class="gw-go-body-cell" style="height: 16px;">Error Logs</div>
|
273 |
-
</li>
|
274 |
-
<li data-row-index="15">
|
275 |
-
<div class="gw-go-body-cell" style="height: 16px;">Roles & Capabilities</div>
|
276 |
-
</li>
|
277 |
-
<li data-row-index="16">
|
278 |
-
<div class="gw-go-body-cell" style="height: 16px;">Email Logs</div>
|
279 |
-
</li>
|
280 |
-
<li class="gw-go-even" data-row-index="17">
|
281 |
-
<div class="gw-go-body-cell" style="height: 16px;">Bulk Deletion Records</div>
|
282 |
-
</li>
|
283 |
-
</ul>
|
284 |
-
<div class="gw-go-footer-wrap">
|
285 |
-
<div class="gw-go-footer-spacer"></div>
|
286 |
-
<div class="gw-go-footer">
|
287 |
-
<div class="gw-go-footer-rows">
|
288 |
-
<div class="gw-go-footer-row" data-row-index="0">
|
289 |
-
<div class="gw-go-footer-row-inner" style="height: 44px;"><a href="http://beta.tech-banker.com/product/mail-bank-business-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div>
|
290 |
-
</div>
|
291 |
-
<div class="gw-go-footer-row gw-go-even" data-row-index="1">
|
292 |
-
<div class="gw-go-footer-row-inner" style="height: 0px;"></div>
|
293 |
-
</div>
|
294 |
-
<div class="gw-go-footer-row" data-row-index="2">
|
295 |
-
<div class="gw-go-footer-row-inner" style="height: 10px;"> </div>
|
296 |
-
</div>
|
297 |
-
</div>
|
298 |
-
</div>
|
299 |
-
</div>
|
300 |
-
</div>
|
301 |
-
<div class="gw-go-tooltip"></div>
|
302 |
-
</div>
|
303 |
-
</div>
|
304 |
-
<div class="gw-go-col-wrap gw-go-col-wrap-2 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="2" style="height: 600px;">
|
305 |
-
<div class="gw-go-col gw-go-clean-style14">
|
306 |
-
<div class="gw-go-col-inner">
|
307 |
-
<div class="gw-go-col-inner-layer"></div>
|
308 |
-
<div class="gw-go-col-inner-layer-over"></div>
|
309 |
-
<div class="gw-go-header"></div>
|
310 |
-
<ul class="gw-go-body">
|
311 |
-
<li data-row-index="0">
|
312 |
-
<div class="gw-go-body-cell" style="height: 79px;"><span style="font-size:20px;"><br>DEVELOPER</span>
|
313 |
-
<br>Ideal for Webmasters
|
314 |
-
</div>
|
315 |
-
</li>
|
316 |
-
<li class="gw-go-even" data-row-index="1">
|
317 |
-
<div class="gw-go-body-cell" style="height: 16px;">____</div>
|
318 |
-
</li>
|
319 |
-
<li data-row-index="2">
|
320 |
-
<div class="gw-go-body-cell" style="height: 75px;"><span style="color:#A4CD39;">€</span><span style="font-size:52px;color:#A4CD39;">82<br></span><span style="color:#A4CD39;">It's a one time purchase.</span></div>
|
321 |
-
</li>
|
322 |
-
<li class="gw-go-even" data-row-index="3">
|
323 |
-
<div class="gw-go-body-cell" style="height: 16px;"><strong>5 Installations per License</strong></div>
|
324 |
-
</li>
|
325 |
-
<li data-row-index="4">
|
326 |
-
<div class="gw-go-body-cell" style="height: 16px;"><strong>6 months of Technical Support</strong></div>
|
327 |
-
</li>
|
328 |
-
<li class="gw-go-even" data-row-index="5">
|
329 |
-
<div class="gw-go-body-cell" style="height: 16px;"><strong>Life Time Free Updates</strong></div>
|
330 |
-
</li>
|
331 |
-
<li data-row-index="6">
|
332 |
-
<div class="gw-go-body-cell" style="height: 16px;">Automatic Plugin Updates</div>
|
333 |
-
</li>
|
334 |
-
<li data-row-index="6">
|
335 |
-
<div class="gw-go-body-cell" style="height: 16px;">Compatibility With Major Plugins</div>
|
336 |
-
</li>
|
337 |
-
<li data-row-index="6">
|
338 |
-
<div class="gw-go-body-cell" style="height: 16px;">Setup Wizard</div>
|
339 |
-
</li>
|
340 |
-
<li data-row-index="6">
|
341 |
-
<div class="gw-go-body-cell" style="height: 16px;">Email Setup</div>
|
342 |
-
</li>
|
343 |
-
<li data-row-index="6">
|
344 |
-
<div class="gw-go-body-cell" style="height: 16px;">Mailer Types</div>
|
345 |
-
</li>
|
346 |
-
<li data-row-index="6">
|
347 |
-
<div class="gw-go-body-cell" style="height: 16px;">SMTP Settings</div>
|
348 |
-
</li>
|
349 |
-
<li data-row-index="6">
|
350 |
-
<div class="gw-go-body-cell" style="height: 16px;">OAuth 2.0 Authentication</div>
|
351 |
-
</li>
|
352 |
-
<li data-row-index="6">
|
353 |
-
<div class="gw-go-body-cell" style="height: 16px;">Test Emails</div>
|
354 |
-
</li>
|
355 |
-
<li data-row-index="6">
|
356 |
-
<div class="gw-go-body-cell" style="height: 16px;">Debug Mode</div>
|
357 |
-
</li>
|
358 |
-
<li data-row-index="6">
|
359 |
-
<div class="gw-go-body-cell" style="height: 16px;">Connectivity Test</div>
|
360 |
-
</li>
|
361 |
-
<li data-row-index="6">
|
362 |
-
<div class="gw-go-body-cell" style="height: 16px;">Different Authentication Parameters</div>
|
363 |
-
</li>
|
364 |
-
<li data-row-index="6">
|
365 |
-
<div class="gw-go-body-cell" style="height: 16px;">Various Encryption Methods</div>
|
366 |
-
</li>
|
367 |
-
<li data-row-index="6">
|
368 |
-
<div class="gw-go-body-cell" style="height: 16px;">Plugin Settings</div>
|
369 |
-
</li>
|
370 |
-
<li data-row-index="6">
|
371 |
-
<div class="gw-go-body-cell" style="height: 16px;">Error Logs</div>
|
372 |
-
</li>
|
373 |
-
<li data-row-index="6">
|
374 |
-
<div class="gw-go-body-cell" style="height: 16px;">Roles & Capabilities</div>
|
375 |
-
</li>
|
376 |
-
<li data-row-index="6">
|
377 |
-
<div class="gw-go-body-cell" style="height: 16px;">Email Logs</div>
|
378 |
-
</li>
|
379 |
-
<li class="gw-go-even" data-row-index="7">
|
380 |
-
<div class="gw-go-body-cell" style="height: 16px;">Bulk Deletion Records</div>
|
381 |
-
</li>
|
382 |
-
</ul>
|
383 |
-
<div class="gw-go-footer-wrap">
|
384 |
-
<div class="gw-go-footer-spacer"></div>
|
385 |
-
<div class="gw-go-footer">
|
386 |
-
<div class="gw-go-footer-rows">
|
387 |
-
<div class="gw-go-footer-row" data-row-index="0">
|
388 |
-
<div class="gw-go-footer-row-inner" style="height: 44px;"><a href="http://beta.tech-banker.com/product/mail-bank-developer-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div>
|
389 |
-
</div>
|
390 |
-
<div class="gw-go-footer-row gw-go-even" data-row-index="1">
|
391 |
-
<div class="gw-go-footer-row-inner" style="height: 0px;"></div>
|
392 |
-
</div>
|
393 |
-
<div class="gw-go-footer-row" data-row-index="2">
|
394 |
-
<div class="gw-go-footer-row-inner" style="height: 10px;"> </div>
|
395 |
-
</div>
|
396 |
-
</div>
|
397 |
-
</div>
|
398 |
-
</div>
|
399 |
-
</div>
|
400 |
-
</div>
|
401 |
-
</div>
|
402 |
</div>
|
403 |
</div>
|
404 |
</div>
|
100 |
<form id="ux_frm_premium_editions">
|
101 |
<div class="form-body">
|
102 |
<div class="wpb_wrapper">
|
103 |
+
<div class="wpb_text_column wpb_content_element ">
|
104 |
+
<div class="wpb_wrapper">
|
105 |
+
<style type="text/css">#go-pricing-table-132 .gw-go { margin-left:-30px; } #go-pricing-table-132 .gw-go-col { margin-left:30px; } #go-pricing-table-132 .gw-go-col-wrap { min-width:130px; } #go-pricing-table-132 .gw-go-col-inner { border-radius:8px 8px 8px 8px; } #go-pricing-table-132 ul.gw-go-body, #go-pricing-table-132 ul.gw-go-body li { border:none !important; padding-top:1px; } #go-pricing-table-132 ul.gw-go-body li .gw-go-body-cell { padding-top:1px; } #go-pricing-table-132 ul.gw-go-body { padding-bottom:1px; } #go-pricing-table-132 .gw-go-tooltip-content { background-color:#9d9d9d;color:#333333;max-width:130px; } #go-pricing-table-132 .gw-go-tooltip:before { border-top-color:#9d9d9d; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-header, #go-pricing-table-132 .gw-go-col-wrap-0.gw-go-hover .gw-go-header-bottom, #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li .gw-go-body-cell:before, #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-btn { background-color:#686868; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-price-wrap span, #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-coinf div, #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-coinb div { color:#686868; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-header h3 { font-size:22px !important; line-height:24px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-price-wrap > span{ font-size:55px !important; line-height:60px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-price-wrap small { font-size:16px !important; line-height:18px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="0"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="1"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="2"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="3"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="4"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="5"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="6"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="7"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="8"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="9"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="10"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="11"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="12"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="13"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="14"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="15"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="16"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="17"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="18"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="19"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="20"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="21"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="22"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="23"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="24"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-body li[data-row-index="25"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { font-size:14px !important; } #go-pricing-table-132 .gw-go-col-wrap-0 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { background-color:#686868 !important; color:#ffffff !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-header, #go-pricing-table-132 .gw-go-col-wrap-1.gw-go-hover .gw-go-header-bottom, #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li .gw-go-body-cell:before, #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-btn { background-color:#3c787e; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-price-wrap span, #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-coinf div, #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-coinb div { color:#3c787e; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-header h3 { font-size:22px !important; line-height:24px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-price-wrap > span{ font-size:55px !important; line-height:60px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-price-wrap small { font-size:16px !important; line-height:18px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="0"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="1"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="2"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="3"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="4"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="5"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="6"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="7"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="8"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="9"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="10"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="11"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="12"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="13"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="14"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="15"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="16"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="17"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="18"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="19"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="20"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="21"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="22"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="23"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="24"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-body li[data-row-index="25"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { font-size:14px !important; } #go-pricing-table-132 .gw-go-col-wrap-1 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { background-color:#3c787e !important; color:#ffffff !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-header, #go-pricing-table-132 .gw-go-col-wrap-2.gw-go-hover .gw-go-header-bottom, #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li .gw-go-body-cell:before, #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-btn { background-color:#ec4a3d; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-price-wrap span, #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-coinf div, #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-coinb div { color:#ec4a3d; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-header h3 { font-size:22px !important; line-height:24px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-price-wrap > span{ font-size:55px !important; line-height:60px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-price-wrap small { font-size:16px !important; line-height:18px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="0"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="1"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="2"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="3"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="4"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="5"] { font-size:17px !important; line-height:19px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="6"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="7"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="8"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="9"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="10"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="11"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="12"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="13"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="14"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="15"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="16"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="17"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="18"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="19"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="20"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="21"] { font-size:14px !important; line-height:16px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="22"] { font-size:20px !important; line-height:22px !important; font-weight:bold !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="23"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="24"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-body li[data-row-index="25"] { font-size:17px !important; line-height:19px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { font-size:14px !important; } #go-pricing-table-132 .gw-go-col-wrap-2 .gw-go-footer-row[data-row-index="0"] .gw-go-btn { background-color:#ec4a3d !important; color:#ffffff !important; } #go-pricing-table-132 .gw-go { visibility:inherit; }</style><style>@media only screen and (min-width: 480px) and (max-width: 767px) { #go-pricing-table-132 .gw-go-col-wrap { width:50%; } }</style><style>@media only screen and (max-width: 479px) { #go-pricing-table-132 .gw-go-col-wrap { width:100%; } }</style><div id="go-pricing-table-132" class="go-pricing" style="margin-bottom:20px;"><div class="gw-go gw-go-clearfix gw-go-enlarge-current gw-go-disable-box-shadow gw-go-3cols" data-id="132" data-colnum="3" data-equalize="{"column":1,"body":1,"footer":1}" data-views="{"tp":{"min":"768","max":"959","cols":""},"ml":{"min":"480","max":"767","cols":"2"},"mp":{"min":"","max":"479","cols":"1"}}" style="opacity: 1;"><div class="gw-go-col-wrap gw-go-col-wrap-0 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="0" style="max-width: 409px; height: 1281px;"><div class="gw-go-col gw-go-clean-style5"><div class="gw-go-col-inner"><div class="gw-go-col-inner-layer"></div><div class="gw-go-col-inner-layer-over"></div><div class="gw-go-header gw-go-header-standard"><div class="gw-go-header-top"><h3>PERSONAL</h3></div><div class="gw-go-header-bottom"><div class="gw-go-price-wrap"><span data-id="price" data-currency="{"currency":"USD","position":"left","thousand-sep":",","decimal-sep":".","decimal-no":"2","symbol":""}" data-price="9"><span data-id="currency">$</span><span data-id="amount">9</span></span><small></small></div></div></div><ul class="gw-go-body"><li data-row-index="0"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="1"><div class="gw-go-body-cell" style="height: 22px;">PRO SUPPORT</div></li><li data-row-index="2"><div class="gw-go-body-cell" style="height: 38px;">Support & Updates for 1 Installation</div></li><li class="gw-go-even" data-row-index="3"><div class="gw-go-body-cell" style="height: 19px;">24x7 Technical Support</div></li><li data-row-index="4"><div class="gw-go-body-cell" style="height: 19px;">Free Updates until Subscription</div></li><li class="gw-go-even" data-row-index="5"><div class="gw-go-body-cell" style="height: 19px;">Automatic Plugin Updates</div></li><li data-row-index="6"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="7"><div class="gw-go-body-cell" style="height: 22px;">MAIN FEATURES</div></li><li data-row-index="8"><div class="gw-go-body-cell" style="height: 19px;">Compatibility with Major Plugins</div></li><li class="gw-go-even" data-row-index="9"><div class="gw-go-body-cell" style="height: 19px;">Setup Wizard</div></li><li data-row-index="10"><div class="gw-go-body-cell" style="height: 19px;">Email Setup</div></li><li class="gw-go-even" data-row-index="11"><div class="gw-go-body-cell" style="height: 19px;">Mailer Types</div></li><li data-row-index="12"><div class="gw-go-body-cell" style="height: 19px;">SMTP Settings</div></li><li class="gw-go-even" data-row-index="13"><div class="gw-go-body-cell" style="height: 19px;">OAuth 2.0 Authentication</div></li><li data-row-index="14"><div class="gw-go-body-cell" style="height: 19px;">Test Emails</div></li><li class="gw-go-even" data-row-index="15"><div class="gw-go-body-cell" style="height: 19px;">Debug Mode</div></li><li data-row-index="16"><div class="gw-go-body-cell" style="height: 19px;">Connectivity Test</div></li><li class="gw-go-even" data-row-index="17"><div class="gw-go-body-cell" style="height: 19px;">Different Authentication Parameters</div></li><li data-row-index="18"><div class="gw-go-body-cell" style="height: 19px;">Various Encryption Methods</div></li><li class="gw-go-even" data-row-index="19"><div class="gw-go-body-cell" style="height: 19px;">Plugin Settings</div></li><li data-row-index="20"><div class="gw-go-body-cell" style="height: 19px;">-</div></li><li class="gw-go-even" data-row-index="21"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="22"><div class="gw-go-body-cell" style="height: 22px;">OTHER SETTINGS</div></li><li class="gw-go-even" data-row-index="23"><div class="gw-go-body-cell" style="height: 19px;">Feedbacks</div></li><li data-row-index="24"><div class="gw-go-body-cell" style="height: 19px;">Roles & Capabilities</div></li><li class="gw-go-even" data-row-index="25"><div class="gw-go-body-cell" style="height: 19px;">-</div></li></ul><div class="gw-go-footer-wrap"><div class="gw-go-footer-spacer"></div><div class="gw-go-footer"><div class="gw-go-footer-rows"><div class="gw-go-footer-row" data-row-index="0"><div class="gw-go-footer-row-inner" style="height: 44px;"><a href="https://mail-bank.tech-banker.com/product/personal-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div></div></div></div></div></div><div class="gw-go-tooltip"></div></div></div><div class="gw-go-col-wrap gw-go-col-wrap-1 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="1" style="max-width: 409px; height: 1281px;"><div class="gw-go-col gw-go-clean-style5"><div class="gw-go-col-inner"><div class="gw-go-col-inner-layer"></div><div class="gw-go-col-inner-layer-over"></div><div class="gw-go-ribbon-left"><img src="https://mail-bank.tech-banker.com/wp-content/plugins/go_pricing/assets/images/signs/ribbons/clean/ribbon_red_left_top.png" alt=""></div><div class="gw-go-header gw-go-header-standard"><div class="gw-go-header-top"><h3>BUSINESS</h3></div><div class="gw-go-header-bottom"><div class="gw-go-price-wrap"><span data-id="price" data-currency="{"currency":"USD","position":"left","thousand-sep":",","decimal-sep":".","decimal-no":"2","symbol":""}" data-price="19"><span data-id="currency">$</span><span data-id="amount">19</span></span><small></small></div></div></div><ul class="gw-go-body"><li data-row-index="0"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="1"><div class="gw-go-body-cell" style="height: 22px;">PRO SUPPORT</div></li><li data-row-index="2"><div class="gw-go-body-cell" style="height: 38px;">Support & Updates for 1 Installation</div></li><li class="gw-go-even" data-row-index="3"><div class="gw-go-body-cell" style="height: 19px;">24x7 Technical Support</div></li><li data-row-index="4"><div class="gw-go-body-cell" style="height: 19px;">Free Updates until Subscription</div></li><li class="gw-go-even" data-row-index="5"><div class="gw-go-body-cell" style="height: 19px;">Automatic Plugin Updates</div></li><li data-row-index="6"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="7"><div class="gw-go-body-cell" style="height: 22px;">MAIN FEATURES</div></li><li data-row-index="8"><div class="gw-go-body-cell" style="height: 19px;">Compatibility with Major Plugins</div></li><li class="gw-go-even" data-row-index="9"><div class="gw-go-body-cell" style="height: 19px;">Setup Wizard</div></li><li data-row-index="10"><div class="gw-go-body-cell" style="height: 19px;">Email Setup</div></li><li class="gw-go-even" data-row-index="11"><div class="gw-go-body-cell" style="height: 19px;">Mailer Types</div></li><li data-row-index="12"><div class="gw-go-body-cell" style="height: 19px;">SMTP Settings</div></li><li class="gw-go-even" data-row-index="13"><div class="gw-go-body-cell" style="height: 19px;">OAuth 2.0 Authentication</div></li><li data-row-index="14"><div class="gw-go-body-cell" style="height: 19px;">Test Emails</div></li><li class="gw-go-even" data-row-index="15"><div class="gw-go-body-cell" style="height: 19px;">Debug Mode</div></li><li data-row-index="16"><div class="gw-go-body-cell" style="height: 19px;">Connectivity Test</div></li><li class="gw-go-even" data-row-index="17"><div class="gw-go-body-cell" style="height: 19px;">Different Authentication Parameters</div></li><li data-row-index="18"><div class="gw-go-body-cell" style="height: 19px;">Various Encryption Methods</div></li><li class="gw-go-even" data-row-index="19"><div class="gw-go-body-cell" style="height: 19px;">Plugin Settings</div></li><li data-row-index="20"><div class="gw-go-body-cell" style="height: 19px;">Email Logs</div></li><li class="gw-go-even" data-row-index="21"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="22"><div class="gw-go-body-cell" style="height: 22px;">OTHER SETTINGS</div></li><li class="gw-go-even" data-row-index="23"><div class="gw-go-body-cell" style="height: 19px;">Feedbacks</div></li><li data-row-index="24"><div class="gw-go-body-cell" style="height: 19px;">Roles & Capabilities</div></li><li class="gw-go-even" data-row-index="25"><div class="gw-go-body-cell" style="height: 19px;">Bulk Deletion of Records</div></li></ul><div class="gw-go-footer-wrap"><div class="gw-go-footer-spacer"></div><div class="gw-go-footer"><div class="gw-go-footer-rows"><div class="gw-go-footer-row" data-row-index="0"><div class="gw-go-footer-row-inner" style="height: 44px;"><a href="https://mail-bank.tech-banker.com/product/business-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div></div></div></div></div></div><div class="gw-go-tooltip"></div></div></div><div class="gw-go-col-wrap gw-go-col-wrap-2 gw-go-hover gw-go-disable-enlarge gw-go-disable-hover" data-current="1" data-col-index="2" style="max-width: 409px; height: 1281px;"><div class="gw-go-col gw-go-clean-style5"><div class="gw-go-col-inner"><div class="gw-go-col-inner-layer"></div><div class="gw-go-col-inner-layer-over"></div><div class="gw-go-header gw-go-header-standard"><div class="gw-go-header-top"><h3>DEVELOPER</h3></div><div class="gw-go-header-bottom"><div class="gw-go-price-wrap"><span data-id="price" data-currency="{"currency":"USD","position":"left","thousand-sep":",","decimal-sep":".","decimal-no":"2","symbol":""}" data-price="81"><span data-id="currency">$</span><span data-id="amount">81</span></span><small></small></div></div></div><ul class="gw-go-body"><li data-row-index="0"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="1"><div class="gw-go-body-cell" style="height: 22px;">PRO SUPPORT</div></li><li data-row-index="2"><div class="gw-go-body-cell" style="height: 38px;">Support & Updates for 5 Installations</div></li><li class="gw-go-even" data-row-index="3"><div class="gw-go-body-cell" style="height: 19px;">24x7 Technical Support</div></li><li data-row-index="4"><div class="gw-go-body-cell" style="height: 19px;">Free Updates until Subscription</div></li><li class="gw-go-even" data-row-index="5"><div class="gw-go-body-cell" style="height: 19px;">Automatic Plugin Updates</div></li><li data-row-index="6"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li class="gw-go-even" data-row-index="7"><div class="gw-go-body-cell" style="height: 22px;">MAIN FEATURES</div></li><li data-row-index="8"><div class="gw-go-body-cell" style="height: 19px;">Compatibility with Major Plugins</div></li><li class="gw-go-even" data-row-index="9"><div class="gw-go-body-cell" style="height: 19px;">Setup Wizard</div></li><li data-row-index="10"><div class="gw-go-body-cell" style="height: 19px;">Email Setup</div></li><li class="gw-go-even" data-row-index="11"><div class="gw-go-body-cell" style="height: 19px;">Mailer Types</div></li><li data-row-index="12"><div class="gw-go-body-cell" style="height: 19px;">SMTP Settings</div></li><li class="gw-go-even" data-row-index="13"><div class="gw-go-body-cell" style="height: 19px;">OAuth 2.0 Authentication</div></li><li data-row-index="14"><div class="gw-go-body-cell" style="height: 19px;">Test Emails</div></li><li class="gw-go-even" data-row-index="15"><div class="gw-go-body-cell" style="height: 19px;">Debug Mode</div></li><li data-row-index="16"><div class="gw-go-body-cell" style="height: 19px;">Connectivity Test</div></li><li class="gw-go-even" data-row-index="17"><div class="gw-go-body-cell" style="height: 19px;">Different Authentication Parameters</div></li><li data-row-index="18"><div class="gw-go-body-cell" style="height: 19px;">Various Encryption Methods</div></li><li class="gw-go-even" data-row-index="19"><div class="gw-go-body-cell" style="height: 19px;">Plugin Settings</div></li><li data-row-index="20"><div class="gw-go-body-cell" style="height: 19px;">Email Logs</div></li><li class="gw-go-even" data-row-index="21"><div class="gw-go-body-cell" style="height: 0px;"></div></li><li data-row-index="22"><div class="gw-go-body-cell" style="height: 22px;">OTHER SETTINGS</div></li><li class="gw-go-even" data-row-index="23"><div class="gw-go-body-cell" style="height: 19px;">Feedbacks</div></li><li data-row-index="24"><div class="gw-go-body-cell" style="height: 19px;">Roles & Capabilities</div></li><li class="gw-go-even" data-row-index="25"><div class="gw-go-body-cell" style="height: 19px;">Bulk Deletion of Records</div></li></ul><div class="gw-go-footer-wrap"><div class="gw-go-footer-spacer"></div><div class="gw-go-footer"><div class="gw-go-footer-rows"><div class="gw-go-footer-row" data-row-index="0"><div class="gw-go-footer-row-inner" style="height: 44px;"><a href="https://mail-bank.tech-banker.com/product/developer-edition/" class="gw-go-btn gw-go-btn-large"><span class="gw-go-btn-inner">BUY NOW</span></a></div></div></div></div></div></div><div class="gw-go-tooltip"></div></div></div></div></div>
|
106 |
+
</div>
|
107 |
+
</div>
|
108 |
+
<div class="wpb_text_column wpb_content_element vc_custom_1502873689597">
|
109 |
+
<div class="wpb_wrapper">
|
110 |
+
<h3 style="text-align: center;">Fast. Easy. Secure.</h3>
|
111 |
+
</div>
|
112 |
+
</div>
|
113 |
+
<div class="wpb_text_column wpb_content_element vc_custom_1502873716241">
|
114 |
+
<div class="wpb_wrapper">
|
115 |
+
<h4 style="text-align: center;">This payment recurs annually.</h4>
|
116 |
+
</div>
|
117 |
+
</div>
|
118 |
+
<div class="wpb_text_column wpb_content_element ">
|
119 |
+
<div class="wpb_wrapper">
|
120 |
+
<p style="text-align: center;">Your initial payment gives you lifetime rights to use Mail Bank Premium Editions, while annual renewals give you ongoing access to updates and support. You can cancel anytime and use the plugin forever, but you’ll lose access to support and updates when your membership expires.</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
</div>
|
122 |
</div>
|
123 |
</div>
|
wp-mail-bank.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: WP Mail SMTP Plugin by Mail Bank
|
4 |
-
Plugin URI:
|
5 |
Description: Mail Bank easily configures sending emails and logging them from your WordPress site using your preferred PHPMailer or SMTP server.
|
6 |
Author: Tech Banker
|
7 |
-
Author URI:
|
8 |
-
Version: 3.0.
|
9 |
License: GPLv3
|
10 |
Text Domain: wp-mail-bank
|
11 |
Domain Path: /languages
|
@@ -36,21 +36,21 @@ if (is_ssl()) {
|
|
36 |
define("tech_banker_url", "https://tech-banker.com");
|
37 |
}
|
38 |
if (!defined("tech_banker_beta_url")) {
|
39 |
-
define("tech_banker_beta_url", "https://
|
40 |
}
|
41 |
} else {
|
42 |
if (!defined("tech_banker_url")) {
|
43 |
define("tech_banker_url", "http://tech-banker.com");
|
44 |
}
|
45 |
if (!defined("tech_banker_beta_url")) {
|
46 |
-
define("tech_banker_beta_url", "http://
|
47 |
}
|
48 |
}
|
49 |
if (!defined("tech_banker_stats_url")) {
|
50 |
define("tech_banker_stats_url", "http://stats.tech-banker-services.org");
|
51 |
}
|
52 |
if (!defined("mail_bank_version_number")) {
|
53 |
-
define("mail_bank_version_number", "3.0.
|
54 |
}
|
55 |
|
56 |
|
@@ -192,7 +192,7 @@ function get_others_capabilities_mail_bank() {
|
|
192 |
Created By: Tech Banker Team
|
193 |
*/
|
194 |
function mail_bank_action_links($plugin_link) {
|
195 |
-
$plugin_link[] = "<a href=\"
|
196 |
return $plugin_link;
|
197 |
}
|
198 |
/*
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: WP Mail SMTP Plugin by Mail Bank
|
4 |
+
Plugin URI: https://mail-bank.tech-banker.com/
|
5 |
Description: Mail Bank easily configures sending emails and logging them from your WordPress site using your preferred PHPMailer or SMTP server.
|
6 |
Author: Tech Banker
|
7 |
+
Author URI: https://mail-bank.tech-banker.com/
|
8 |
+
Version: 3.0.11
|
9 |
License: GPLv3
|
10 |
Text Domain: wp-mail-bank
|
11 |
Domain Path: /languages
|
36 |
define("tech_banker_url", "https://tech-banker.com");
|
37 |
}
|
38 |
if (!defined("tech_banker_beta_url")) {
|
39 |
+
define("tech_banker_beta_url", "https://mail-bank.tech-banker.com");
|
40 |
}
|
41 |
} else {
|
42 |
if (!defined("tech_banker_url")) {
|
43 |
define("tech_banker_url", "http://tech-banker.com");
|
44 |
}
|
45 |
if (!defined("tech_banker_beta_url")) {
|
46 |
+
define("tech_banker_beta_url", "http://mail-bank.tech-banker.com");
|
47 |
}
|
48 |
}
|
49 |
if (!defined("tech_banker_stats_url")) {
|
50 |
define("tech_banker_stats_url", "http://stats.tech-banker-services.org");
|
51 |
}
|
52 |
if (!defined("mail_bank_version_number")) {
|
53 |
+
define("mail_bank_version_number", "3.0.11");
|
54 |
}
|
55 |
|
56 |
|
192 |
Created By: Tech Banker Team
|
193 |
*/
|
194 |
function mail_bank_action_links($plugin_link) {
|
195 |
+
$plugin_link[] = "<a href=\"https://mail-bank.tech-banker.com/\" style=\"color: red; font-weight: bold;\" target=\"_blank\">Go Pro!</a>";
|
196 |
return $plugin_link;
|
197 |
}
|
198 |
/*
|