Notification Routing Importer for Gravity Forms
Bulk import notification routing rules into Gravity Forms from CSV, XLSX files or Google Sheets.
by Guilamu · github.com/guilamu/gf-notification-routing-importer · website
★ 1stars
3release downloads
0forks
Install
The author publishes release zips, so WP-CLI can install straight from GitHub:
wp plugin install https://github.com/guilamu/gf-notification-routing-importer/releases/download/v1.1.0/gf-notification-routing-importer.zipDeclares an update source (https://github.com/guilamu/gf-notification-routing-importer), so updates arrive through the plugin's own updater.
From the readme
Notification Routing Importer for Gravity Forms
Bulk import notification routing rules into Gravity Forms from CSV, XLSX files or Google Sheets.
Import
- Upload a CSV or XLSX file to populate notification routing rules in bulk
- Smart field mapping: reference form fields by their label (e.g., Department) or explicitly by ID (e.g., {:5})
- Flexible column order: columns are matched by header name, not position
- Replace or Append: choose whether imported rules overwrite existing routing rules or are added alongside them
- Auto-detect CSV separator: comma (,) and semicolon (;) are both supported
CSV / XLSX Format
Your file must contain a header row with these column names (case-insensitive, any order):
| email | field | operator | value |
|-------|-------|----------|-------|
| sales@acme.com | Department | is | Sales |
| support@acme.com | Department | is | Support |
| eu@acme.com | {:7} | contains | Europe |
Column Details
| Column | Aliases | Description |
|--------|---------|-------------|
| email | email, e-mail, mail | Recipient email address or merge tag (e.g., {adminemail}) |
| field | field, fieldId, fieldid, field id | Form field label (e.g., Department) or explicit
Read the full README on GitHub →