Task
The source table has a free-text comment column. Somewhere inside the text there is an email address that must become a separate email column.
Short answer
In email, use comment as the source and add one regex rule that removes everything except the email pattern.
Before / After
Before
source data| id | comment |
|---|---|
| 1001 | Contact: buyer@example.test, urgent |
| 1002 | Write to sales@store.fr |
After
result| id | |
|---|---|
| 1001 | buyer@example.test |
| 1002 | sales@store.fr |
Where to Open Settings

Open the settings under email; the source column iscomment.
How to Do It in Eofferix
- Add a transformation: condition Regular expression, value
[A-Za-z0-9._%+\-]+@[A-Za-z0-9.\-]+\.[A-Za-z]{2,}, action Remove everything except.
The rule keeps only a substring that looks like an email address. - Save the column settings, save the template, then on the final step run the transformation.