Analyze Body and Headers

It takes the email's body and header to extract metadata from the body and URLs from the header.

1. Trigger- takes the body and header from a parent playbook and forwards them to the body processing script and header processing script, respectively.

2. Script [Get_Meta_Data] - runs a Python script to process the email header by breaking it down into multiple fields and extracting metadata from them. It forwards the extracted data to the following playbook.

3. Script [Get_URLs] - runs a Python script to extract all the URLs from the email's body using regex patterns and forwards them to the following playbook.

4. Format [Format_URLs] - formats the decoded URLs into a specific syntax that a parent playbook expects.

5. End - forwards the extracted metadata and the formatted URLs to the parent playbook.

Last updated

Was this helpful?