-
Notifications
You must be signed in to change notification settings - Fork 35
/
wp_mail_smtp.php
349 lines (303 loc) · 10.4 KB
/
wp_mail_smtp.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
<?php
/**
* Plugin Name: WP Mail SMTP Pro
* Version: 4.2.0
* Requires at least: 5.5
* Requires PHP: 7.2
* Plugin URI: https://wpmailsmtp.com/
* Description: Reconfigures the <code>wp_mail()</code> function to use Gmail/Mailgun/SendGrid/SMTP instead of the default <code>mail()</code> and creates an options page to manage the settings.
* Author: WP Mail SMTP
* Author URI: https://wpmailsmtp.com/
* Network: false
* Text Domain: wp-mail-smtp
* Domain Path: /assets/languages
*/
/**
* @author WPForms
* @copyright WPForms, 2007-23, All Rights Reserved
* This code is released under the GPL licence version 3 or later, available here
* https://www.gnu.org/licenses/gpl.txt
*/
/**
* Setting options in wp-config.php
*
* Specifically aimed at WP Multisite users, you can set the options for this plugin as
* constants in wp-config.php. Copy the code below into wp-config.php and tweak settings.
* Values from constants are NOT stripslash()'ed.
*
* When enabled, make sure to comment out (at the beginning of the line using //) those constants that you do not need,
* or remove them completely, so they won't interfere with plugin settings.
*/
/*
define( 'WPMS_ON', true ); // True turns on the whole constants support and usage, false turns it off.
define( 'WPMS_DO_NOT_SEND', true ); // Or false, in that case constant is ignored.
define( 'WPMS_MAIL_FROM', '[email protected]' );
define( 'WPMS_MAIL_FROM_FORCE', true ); // True turns it on, false turns it off.
define( 'WPMS_MAIL_FROM_NAME', 'From Name' );
define( 'WPMS_MAIL_FROM_NAME_FORCE', true ); // True turns it on, false turns it off.
define( 'WPMS_MAILER', 'sendinblue' ); // Possible values: 'mail', 'smtpcom', 'sendinblue', 'mailgun', 'sendgrid', 'gmail', 'smtp'.
define( 'WPMS_SET_RETURN_PATH', true ); // Sets $phpmailer->Sender if true, relevant only for Other SMTP mailer.
// Recommended mailers.
define( 'WPMS_SMTPCOM_API_KEY', '' );
define( 'WPMS_SMTPCOM_CHANNEL', '' );
define( 'WPMS_SENDINBLUE_API_KEY', '' );
define( 'WPMS_SENDINBLUE_DOMAIN', '' );
define( 'WPMS_ZOHO_DOMAIN', '' );
define( 'WPMS_ZOHO_CLIENT_ID', '' );
define( 'WPMS_ZOHO_CLIENT_SECRET', '' );
define( 'WPMS_PEPIPOST_API_KEY', '' );
define( 'WPMS_SENDINBLUE_API_KEY', '' );
define( 'WPMS_MAILGUN_API_KEY', '' );
define( 'WPMS_MAILGUN_DOMAIN', '' );
define( 'WPMS_MAILGUN_REGION', 'US' ); // or 'EU' for Europe.
define( 'WPMS_SENDGRID_API_KEY', '' );
define( 'WPMS_GMAIL_CLIENT_ID', '' );
define( 'WPMS_GMAIL_CLIENT_SECRET', '' );
define( 'WPMS_SMTP_HOST', 'localhost' ); // The SMTP mail host.
define( 'WPMS_SMTP_PORT', 25 ); // The SMTP server port number.
define( 'WPMS_SSL', '' ); // Possible values '', 'ssl', 'tls' - note TLS is not STARTTLS.
define( 'WPMS_SMTP_AUTH', true ); // True turns it on, false turns it off.
define( 'WPMS_SMTP_USER', 'username' ); // SMTP authentication username, only used if WPMS_SMTP_AUTH is true.
define( 'WPMS_SMTP_PASS', 'password' ); // SMTP authentication password, only used if WPMS_SMTP_AUTH is true.
define( 'WPMS_SMTP_AUTOTLS', true ); // True turns it on, false turns it off.
*/
/**
* Don't allow multiple versions of 1.5.x (Lite and Pro) and above to be active.
*
* @since 1.5.0
*/
if ( function_exists( 'wp_mail_smtp' ) ) {
if ( ! function_exists( 'wp_mail_smtp_deactivate' ) ) {
/**
* Deactivate if plugin already activated.
* Needed when transitioning from 1.5+ Lite to Pro.
*
* @since 1.5.0
*/
function wp_mail_smtp_deactivate() {
/*
* Prevent issues of WP functions not being available for other plugins that hook into
* this early deactivation. GH issue #861.
*/
require_once ABSPATH . WPINC . '/pluggable.php';
deactivate_plugins( plugin_basename( __FILE__ ) );
}
}
add_action( 'admin_init', 'wp_mail_smtp_deactivate' );
// Do not process the plugin code further.
return;
}
if ( ! function_exists( 'wp_mail_smtp_check_pro_loading_allowed' ) ) {
/**
* Don't allow 1.4.x and below to break when 1.5+ Pro is activated.
* This will stop the current plugin from loading and display a message in admin area.
*
* @since 1.5.0
*/
function wp_mail_smtp_check_pro_loading_allowed() {
// Check for pro without using wp_mail_smtp()->is_pro(), because at this point it's too early.
if ( ! is_readable( rtrim( plugin_dir_path( __FILE__ ), '/\\' ) . '/src/Pro/Pro.php' ) ) {
// Currently, not a pro version of the plugin is loaded.
return false;
}
if ( ! function_exists( 'is_plugin_active' ) ) {
require_once ABSPATH . '/wp-admin/includes/plugin.php';
}
$lite_plugin_slug = 'wp-mail-smtp/wp_mail_smtp.php';
// Search for old plugin name.
if ( is_plugin_active( $lite_plugin_slug ) ) {
/*
* Prevent issues of WP functions not being available for other plugins that hook into
* this early deactivation. GH issue #861.
*/
require_once ABSPATH . WPINC . '/pluggable.php';
if (
is_multisite() &&
is_plugin_active_for_network( plugin_basename( __FILE__ ) ) &&
! is_plugin_active_for_network( $lite_plugin_slug )
) {
// Deactivate Lite plugin if Pro activated on Network level.
deactivate_plugins( $lite_plugin_slug );
} else {
// As Pro is loaded and Lite too - deactivate *silently* itself not to break older SMTP plugin.
deactivate_plugins( plugin_basename( __FILE__ ) );
if ( is_network_admin() ) {
add_action( 'network_admin_notices', 'wp_mail_smtp_lite_deactivation_notice' );
} else {
add_action( 'admin_notices', 'wp_mail_smtp_lite_deactivation_notice' );
}
return true;
}
}
return false;
}
if ( ! function_exists( 'wp_mail_smtp_lite_deactivation_notice' ) ) {
/**
* Display the notice after deactivation.
*
* @since 1.5.0
*/
function wp_mail_smtp_lite_deactivation_notice() {
echo '<div class="notice notice-warning"><p>' . esc_html__( 'Please deactivate the free version of the WP Mail SMTP plugin before activating WP Mail SMTP Pro.', 'wp-mail-smtp' ) . '</p></div>';
if ( isset( $_GET['activate'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
unset( $_GET['activate'] ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended
}
}
}
// Stop the plugin loading.
if ( wp_mail_smtp_check_pro_loading_allowed() === true ) {
return;
}
}
if ( ! function_exists( 'wp_mail_smtp_insecure_php_version_notice' ) ) {
/**
* Display admin notice, if the server is using old/insecure PHP version.
*
* @since 2.0.0
*/
function wp_mail_smtp_insecure_php_version_notice() {
?>
<div class="notice notice-error">
<p>
<?php
printf(
wp_kses( /* translators: %1$s - WPBeginner URL for recommended WordPress hosting. */
__( 'Your site is running an <strong>insecure version</strong> of PHP that is no longer supported. Please contact your web hosting provider to update your PHP version or switch to a <a href="%1$s" target="_blank" rel="noopener noreferrer">recommended WordPress hosting company</a>.', 'wp-mail-smtp' ),
array(
'a' => array(
'href' => array(),
'target' => array(),
'rel' => array(),
),
'strong' => array(),
)
),
'https://www.wpbeginner.com/wordpress-hosting/'
);
?>
<br><br>
<?php
$doc_link = add_query_arg(
[
'utm_source' => 'WordPress',
'utm_medium' => 'Admin Notice',
'utm_campaign' => is_readable( rtrim( plugin_dir_path( __FILE__ ), '/\\' ) . '/src/Pro/Pro.php' ) ? 'plugin' : 'liteplugin',
'utm_content' => 'Minimal Required PHP Version',
],
'https://wpmailsmtp.com/docs/supported-php-versions-for-wp-mail-smtp/'
);
printf(
wp_kses( /* translators: %s - WPMailSMTP.com docs URL with more details. */
__( '<strong>WP Mail SMTP plugin is disabled</strong> on your site until you fix the issue. <a href="%s" target="_blank" rel="noopener noreferrer">Read more for additional information.</a>', 'wp-mail-smtp' ),
array(
'a' => array(
'href' => array(),
'target' => array(),
'rel' => array(),
),
'strong' => array(),
)
),
esc_url( $doc_link )
);
?>
</p>
</div>
<?php
// In case this is on plugin activation.
if ( isset( $_GET['activate'] ) ) { //phpcs:ignore
unset( $_GET['activate'] ); //phpcs:ignore
}
}
}
if ( ! defined( 'WPMS_PLUGIN_VER' ) ) {
/**
* Plugin version.
*
* @since 0.11.1
*/
define( 'WPMS_PLUGIN_VER', '4.2.0' );
}
if ( ! defined( 'WPMS_PHP_VER' ) ) {
/**
* Minimum supported PHP version.
*
* @since 1.0.0
*/
define( 'WPMS_PHP_VER', '7.2' );
}
if ( ! defined( 'WPMS_WP_VER' ) ) {
/**
* Minimum supported WordPress version.
*
* @since 3.3.0
*/
define( 'WPMS_WP_VER', '5.5' );
}
if ( ! defined( 'WPMS_PLUGIN_FILE' ) ) {
/**
* Plugin main file path.
*
* @since 2.1.2
*/
define( 'WPMS_PLUGIN_FILE', __FILE__ );
}
if ( ! function_exists( 'wp_mail_smtp_unsupported_wp_version_notice' ) ) {
/**
* Display admin notice, if the site is using unsupported WP version.
*
* @since 3.3.0
*/
function wp_mail_smtp_unsupported_wp_version_notice() {
?>
<div class="notice notice-error">
<p>
<?php
printf(
wp_kses( /* translators: %s The minimal WP version supported by WP Mail SMTP. */
__( 'Your site is running an <strong>old version</strong> of WordPress that is no longer supported by WP Mail SMTP. Please update your WordPress site to at least version <strong>%s</strong>.', 'wp-mail-smtp' ),
[
'strong' => [],
]
),
esc_html( WPMS_WP_VER )
);
?>
<br><br>
<?php
echo wp_kses(
__( '<strong>WP Mail SMTP plugin is disabled</strong> on your site until WordPress is updated to the required version.', 'wp-mail-smtp' ),
[
'strong' => [],
]
);
?>
</p>
</div>
<?php
// In case this is on plugin activation.
if ( isset( $_GET['activate'] ) ) { //phpcs:ignore
unset( $_GET['activate'] ); //phpcs:ignore
}
}
}
/**
* Display admin notice and prevent plugin code execution, if the server is
* using old/insecure PHP version.
*
* @since 2.0.0
*/
if ( version_compare( phpversion(), WPMS_PHP_VER, '<' ) ) {
add_action( 'admin_notices', 'wp_mail_smtp_insecure_php_version_notice' );
return;
}
/**
* Display admin notice and prevent plugin code execution, if the WP version is lower than WPMS_WP_VER.
*
* @since 3.3.0
*/
if ( version_compare( get_bloginfo( 'version' ), WPMS_WP_VER, '<' ) ) {
add_action( 'admin_notices', 'wp_mail_smtp_unsupported_wp_version_notice' );
return;
}
require_once dirname( __FILE__ ) . '/wp-mail-smtp.php';