Details
| ID | EmailReputation |
|---|---|
| Language | python |
| From Version | 5.0.0 |
| Docker Image | demisto/python3:3.12.13.10404775 |
| Tags | enhancement |
README
A context script for email entities.
Script Data
| Name | Description |
|---|---|
| Script Type | python |
| Tags | enhancement |
Inputs
| Argument Name | Description |
|---|---|
| The email address to look up. |
Outputs
There are no outputs for this script.
import demistomock as demisto # noqa: F401 from CommonServerPython import * # noqa: F401 def email_reputation(): results = demisto.executeCommand("email", {"email": demisto.get(demisto.args(), "email")}) for item in results: if isError(item): item["Contents"] = item["Brand"] + " returned an error.\n" + str(item["Contents"]) demisto.results(results) def main(): email_reputation() if __name__ in ("__main__", "__builtin__", "builtins"): # pragma: no cover main()