Why table border is not visible when notification triggering to outlook?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2023 06:34 AM
Hi Community,
I created a notification which consist email script that has html code to create a table.
The table borders is showing when I'm previewing notification in Notification:-
But when same email triggering to outlook, table border is not showing up:-
Email Script;-
Could any one please help on this?
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2023 07:25 AM
the <table> tag contains the attribute border with invalid value "2px solid black".
This is a CSS style and has to be added to the style attribute:
<table style="border:2px solid black; border-collapse:collapse; width:100%">
Maik