diff --git a/back/pialert.py b/back/pialert.py
index 7d31bf01..5f656b64 100755
--- a/back/pialert.py
+++ b/back/pialert.py
@@ -2358,7 +2358,7 @@ def construct_notifications(sqlQuery, tableTitle, skipText = False, suppliedJson
html = convert(json, build_direction=build_direction, table_attributes=table_attributes)
- html = format_table(html, "data", headerProps, tableTitle)
+ html = format_table(html, "data", headerProps, tableTitle).replace('
','')
headers = json_struc.columnNames
diff --git a/docs/WEBHOOK_N8N.md b/docs/WEBHOOK_N8N.md
index 13a5b07b..b3bb73ed 100755
--- a/docs/WEBHOOK_N8N.md
+++ b/docs/WEBHOOK_N8N.md
@@ -7,8 +7,8 @@ See [sample JSON](https://github.com/jokob-sk/Pi.Alert/blob/main/back/webhook_js

```
-{{$json["body"]["attachments"][0]["text"]["new_devices"]}}
-{{$json["body"]["attachments"][0]["text"]["events"]}}
+Events count: {{ $json["body"]["attachments"][0]["text"]["events"].length }}
+New devices count: {{ $json["body"]["attachments"][0]["text"]["new_devices"].length }}
```
### Get your webhook in n8n
diff --git a/docs/img/WEBHOOK_N8N/n8n_send_email_settings.png b/docs/img/WEBHOOK_N8N/n8n_send_email_settings.png
index 64d4d84c..366ee5c2 100755
Binary files a/docs/img/WEBHOOK_N8N/n8n_send_email_settings.png and b/docs/img/WEBHOOK_N8N/n8n_send_email_settings.png differ