Task
Contact emails can contain uppercase letters, spaces, or invalid text. Mailchimp needs an Email Address column.
Short answer
Create Email Address, trim and remove spaces, lowercase the value, and keep only rows that match an email regex.
How to do it in Eofferix
- Upload the contacts table and open the table editor.

The preview shows cleaned emails, while the row without a valid address is not exported. - Create
Email Addressfromemailand addTrim,Remove spaces, andLowercaserules.
The rules remove spaces and lowercase the address before validation. - Add an export condition after transformation: the value must match an email regex.
- Save the template and export the import file.
Before / after
The data below is a training example and does not belong to real user files.
Before
source data| contact_id | |
|---|---|
| C-1001 | USER@Example.TEST |
| C-1002 | sales @ shop.example |
| C-1003 | not an email |
After
result| contact_id | Email Address |
|---|---|
| C-1001 | user@example.test |
| C-1002 | sales@shop.example |