Hi,
I want to set some dynamic fields depending on the body of an E-Mail:
The E-Mail looks like this:
blabla...
Serial: 123456789
Failure: Some Failure Description
Addditional stuff...
In This case, the fields should be set as follows:
DynamicFieldSerial <- 123456789
DynamicFieldFailure <- Some Failure Description
I found this: viewtopic.php?t=34285
but when using (.*?(?:Serial:).*) as filter and [***] as setter, the dynamic field is filled with "Serial: 123456789"
Furthermore I'd like to tag the group in order to have only one PostMaster Filter for all fields I'm intersted in.
Filter: (.*?(?:Serial:)(?<serial>))
Setter [**\serial**]
does not work.
Any ideas how I can solve this?
Thank you!
I want to set some dynamic fields depending on the body of an E-Mail:
The E-Mail looks like this:
blabla...
Serial: 123456789
Failure: Some Failure Description
Addditional stuff...
In This case, the fields should be set as follows:
DynamicFieldSerial <- 123456789
DynamicFieldFailure <- Some Failure Description
I found this: viewtopic.php?t=34285
but when using (.*?(?:Serial:).*) as filter and [***] as setter, the dynamic field is filled with "Serial: 123456789"
Furthermore I'd like to tag the group in order to have only one PostMaster Filter for all fields I'm intersted in.
Filter: (.*?(?:Serial:)(?<serial>))
Setter [**\serial**]
does not work.
Any ideas how I can solve this?
Thank you!
Statistics: Posted by ppreininger — 25 Jun 2024, 18:19 — Replies 0 — Views 12