<html lang="pt-br" dir="ltr"><head></head><body>### [wpforms_mailcheck_enabled](https://wpforms.com/developers/wpforms_mailcheck_enabled/)

**Published:** February 21, 2020
**Author:** Editorial Team

**Excerpt:** The wpforms_mailcheck_enabled filter determines whether the email suggestion feature is enabled for the Email field.

**Content:**

## Description

The `wpforms_mailcheck_enabled` filter determines whether the email suggestion feature is enabled for the **Email** field.

## Parameters

$enable\_mailcheck*(bool) (Required)* Determines whether email suggestion will display, default is `true` (display suggestions)## Source

`wpforms/src/Frontend/Frontend.php`

## More Information

The filter will allow you to disable the email suggestion on the **Email** form fields.

![Use the wpforms_mailcheck_enabled filter to disable the email suggestion](https://wpforms.com/wp-content/uploads/2019/10/wpforms-email-suggestion.jpg)

## Examples

```

/**
 * Filter determines if email suggestion is to be used on Email form field.
 *
 * @link  https://wpforms.com/developers/wpforms_mailcheck_enabled/
 * 
 * @param  bool $enable_mailcheck   Default is true.
 * @return bool
 */

// Disable email suggestion on Email form field
add_filter( 'wpforms_mailcheck_enabled', '__return_false' );

```

## Reference Action

[How to Disable the Email Suggestion on the Email Form Field](https://wpforms.com/developers/how-to-disable-the-email-suggestion-on-the-email-form-field/ "How to Disable the Email Suggestion on the Email Form Field")

**Categories:** Filters Hooks

**Tags:** PHP

---

</body></html>