This article provides a guide for how to bulk add Banned Emails in WHMCS.
WHMCS Banned Emails is the list of domains for which email addresses cannot register accounts. This is useful to prevent any user from signing up with temporary email addresses.
How to Bulk Add Banned Emails in WHMCS
To bulk add Banned Emails in WHMCS, follow the steps below:
- Login to cPanel server of your WHMCS.
- Navigate to phpMyAdmin.
- Select your WHMCS database.
- Click "SQL" to input query.
- Enter the following query:
Replace 'domain1.com', 'domain2.com' and 'domain3.com' with your preferred values.INSERT INTO tblbannedemails (domain) VALUES ('domain1.com'), ('domain2.com'), ('domain3.com');
You can use this format to bulk add Banned Emails in WHMCS via SQL query.