Home / Admin / Enable WP Mail SMTP Constants
Duplicate Snippet

Embed Snippet on Your Site

Enable WP Mail SMTP Constants

This snippet will prevent users from changing WP Mail SMTP settings in your WordPress admin area by setting up constants.

To get started, you’ll need to open your site’s wp-config.php file. Look for the line that reads:
/* That's all, stop editing! Happy publishing. */

Be sure to add any new code above this line.

Code Preview
php
<?php
/* Enable WP Mail SMTP Constants  
 * 
 * Original doc: https://wpmailsmtp.com/docs/how-to-secure-smtp-settings-by-using-constants/
*/
define( 'WPMS_ON', true );

Comments

Add a Comment