Replies: 0
Hi there,
Should I use define( 'WPMS_SMTP_AUTOTLS', true ); // True turns it on, false turns it off for Other SMTP Mailer if I’m already using TLS encryption.
There is no option for Auto TLS in the dashboard after picking the TLS encryption option.
Then, should I use define( 'WPMS_SMTP_AUTOTLS', true ); or should I remove it from the code and make it look like this:
define( 'WPMS_SMTP_HOST', 'example' ); // The SMTP mail host.
define( 'WPMS_SMTP_PORT', 587 ); // 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.
What’s the best practice?
Thanks. 🙂