Home / Admin / Hiding Your Identity For Amazon SES Mailer Setup
Duplicate Snippet

Embed Snippet on Your Site

Hiding Your Identity For Amazon SES Mailer Setup

This snippet will enhance privacy and domain restrictions using WP Mail SMTP with Amazon SES mailer.

To hide the SES identities table, you will need to modify the wp-config.php file in your site’s directory. After opening the wp-config.php file, insert the following line of code before the comment that says /* That's all, stop editing! Happy publishing. */

Code Preview
php
<?php
/* Hide Your Identity For Amazon SES Mailer Setup  
 * 
 * Original doc: https://wpmailsmtp.com/docs/hiding-your-identity-for-amazon-ses-mailer-setup/
*/
define( 'WPMS_AMAZONSES_DISPLAY_IDENTITIES', false );

Comments

Add a Comment