
內容簡介
HTML源代碼如下:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<h3>WordPress外掛總結:</h3>
<p>Advanced Email Filter for Elementor Forms為您的Elementor Pro表單增加企業級郵件驗證。在保護免受垃圾郵件提交的同時,保持對合法用戶的靈活性。</p>
<h3>問題與答案:</h3>
<ul>
<li>這個外掛提供了哪些功能?</li>
<li>如何進行全局Blocklist/Whitelist管理?</li>
<li>該外掛支援哪種形式的郵件篩選規則?</li>
<li>這個外掛是否僅與Elementor Pro表單兼容?</li>
<li>在哪裡可以設置郵件篩選器?</li>
<li>如何在全局設置中對Blocklist進行設置?</li>
<li>如何在全局設置中對Whitelist進行設置?</li>
<li>如何對單獨表單進行特定設置?</li>
<li>如何自定義驗證行為使用這些Hooks & Filters?</li>
</ul>
</body>
</html>
```
外掛標籤
開發者團隊
② 後台搜尋「Advanced Email Filter for Elementor Forms」→ 直接安裝(推薦)
原文外掛簡介
Advanced Email Filter for Elementor Forms adds enterprise-grade email validation to your Elementor pro forms. Protect against spam submissions while maintaining flexibility for legitimate users.
Features
Global Blocklist/Whitelist management
Per-form email filtering rules
Wildcard support for domains and patterns
Business email only filter (new feature)
Disposable / temporary email blocking (new feature)
Compatible with Elementor Pro forms only
Learn more about all features | Read Documentation
Configuration
There is two place where you can control email filter.
Global Settings
Navigate to Email Filter -> Settings to configure:
Blocklist: @spamdomain.com, *.ru, fake-user@
Whitelist: @yourcompany.com, admin@, *.trusted.org
Form-Specific Settings
Edit Elementor Form widget
Open Email Filtering section
Add patterns:
Blocklist (form-specific)
@temp-domain.com, *.xyz
Whitelist (form-specific)
@client-domain.com, manager@
Hooks & Filters
Customize validation behavior using these hooks:
// Modify validation error message
add_filter('aefe_validation_error', function($message, $email) {
return sprintf(__('Error: %s is blocked', 'text-domain'), $email);
}, 10, 2);
