Skip to content

Instantly share code, notes, and snippets.

@mennwebs
Last active March 31, 2020 12:11
Show Gist options
  • Select an option

  • Save mennwebs/6147d38f0e661bc96665f46718d09cab to your computer and use it in GitHub Desktop.

Select an option

Save mennwebs/6147d38f0e661bc96665f46718d09cab to your computer and use it in GitHub Desktop.
Mailgun for WP Multisite
<?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