Last active
May 12, 2019 18:16
-
-
Save daliborgogic/9834228601a62832c2686b6006bf901c to your computer and use it in GitHub Desktop.
[SMTP WP] #wp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define('SMTP_USER','[email protected]'); // Username to use for SMTP authentication | |
define('SMTP_PASS', '############'); // Password to use for SMTP authentication | |
define('SMTP_HOST', 'mail.host.com'); // The hostname of the mail server | |
define('SMTP_FROM', '[email protected]'); // SMTP From email address | |
define('SMTP_NAME', 'Example'); // SMTP From name | |
define('SMTP_PORT', '587'); // SMTP port number - likely to be 25, 465 or 587 | |
define('SMTP_SECURE', 'tls'); // Encryption system to use - ssl or tls | |
define('SMTP_AUTH', true); // Use SMTP authentication (true|false) | |
define('SMTP_DEBUG', 0); // for debugging purposes only set to 1 or 2 |
Author
daliborgogic
commented
Apr 25, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment