Multisite Config Constants
-
Hello,
I am hoping you can help me troubleshoot an issue.
We’ve had this plugin working on multisite, but once we updated to 5.2.3 and updated our PHP to 5.6.40 the emails are no longer working with constants defined. If I deactivate the constants then the individual site works with the settings I apply. So is it an issue with the constants? I double-checked the SMTP host information but no luck.Here is what I have:
define( ‘WPMS_ON’, on ); // True turns on the whole constants support and usage, false turns it off.define( ‘WPMS_MAIL_FROM’, ‘[email protected]’ );
define( ‘WPMS_MAIL_FROM_FORCE’, false ); // True turns it on, false turns it off.
define( ‘WPMS_MAIL_FROM_NAME’, ‘do not reply’ );
define( ‘WPMS_MAIL_FROM_NAME_FORCE’, false ); // True turns it on, false turns it off.
define( ‘WPMS_MAILER’, ‘smtp’ ); // Possible values: ‘mail’, ‘sendinblue’, ‘mailgun’, ‘sendgrid’, ‘gmail’, ‘smtp’.
define( ‘WPMS_SET_RETURN_PATH’, true ); // Sets $phpmailer->Sender if true, relevant only for Other SMTP mailer.define( ‘WPMS_SMTP_HOST’, ‘xx.xx.xxx.xx’ ); // 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’, false ); // True turns it on, false turns it off.
define( ‘WPMS_SMTP_USER’, ” ); // SMTP authentication username, only used if WPMS_SMTP_AUTH is true.
define( ‘WPMS_SMTP_PASS’, ” ); // SMTP authentication password, only used if WPMS_SMTP_AUTH is true.
define( ‘WPMS_SMTP_AUTOTLS’, false ); // True turns it on, false turns it off.Thank you,
Albert
- The topic ‘Multisite Config Constants’ is closed to new replies.