Home Plugins cf7 mailgun domain validation
CF7 Mailgun Domain Validation logo

CF7 Mailgun Domain Validation

by macbookandrew on WordPress.org

Allows email addresses using your site’s Mailgun domain to pass Contact Form 7’s form validation feature.

(0)

Do you use Mailgun to deliver emails from your WordPress site? Does it annoy you that email addresses using the Mailgun domain causes Contact Form 7 validation to fail?

This plugin allows email addresses using your site’s Mailgun domain to pass Contact Form 7’s form validation feature.

It also includes the cf7_mailgun_domain filter you can use to modify the default mailgun domain. Example:

/**
 * Filter the Mailgun domain.
 *
 * @param string $domain Your mailgun domain; defaults to the domain set in the Mailgun plugin settings, or 'mg.your-site.com' if that is not set.
 *
 * @return string Your mailgun domain.
 */
function my_custom_mailgun_domain( $domain ) {
    $domain = 'mg.my-site.com'; // Replace this with your Mailgun domain.
    return $domain;
}
add_filter( 'cf7_mailgun_domain', 'my_custom_mailgun_domain' );
Active installations10+
Weekly downloads
10+25.00%
Version1.0.2
Last updated3/9/2021
WordPress version4.8
Tested up to5.7.0
Tags
cf7contact formcontact form 7contactform7validation