Last active
March 31, 2020 12:11
-
-
Save mennwebs/6147d38f0e661bc96665f46718d09cab to your computer and use it in GitHub Desktop.
Mailgun for WP Multisite
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
| <?php | |
| // Ref: https://guides.wp-bullet.com/how-to-use-mailgun-with-wordpress-multisite-http-api-or-smtp/ | |
| //Mailgun multisite stuff | |
| define('MAILGUN_USEAPI', true); | |
| define('MAILGUN_APIKEY', 'key-YourAPIKeyHere'); | |
| define('MAILGUN_DOMAIN', 'mg.youdomain.com' ); | |
| define('MAILGUN_SECURE', true); | |
| // Set the from name and from address | |
| define('MAILGUN_FROM_NAME', 'No-Reply'); | |
| define('MAILGUN_FROM_ADDRESS', 'noreply@webtodlong.com'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment