Home / Admin / Defining Mailgun Mailer Constants
Duplicate Snippet

Embed Snippet on Your Site

Defining Mailgun Mailer 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
/* Defining Mailgun Mailer Constants 
 * 
 * Original doc: https://wpmailsmtp.com/docs/how-to-secure-smtp-settings-by-using-constants/
*/
define( 'WPMS_MAILGUN_API_KEY', '' );
define( 'WPMS_MAILGUN_DOMAIN', '' );
define( 'WPMS_MAILGUN_REGION', 'US' ); // Change to 'EU' for Europe.
define( 'WPMS_MAILER', 'mailgun' );

Comments

Add a Comment