For me this could just be a bit of nuance paranoia but is there any difference between how HTML Emails and HTML Email Signatures are created and/or rendered? Specifically, after doing some research I keep seeing HTML Email results coming up when I ask for HTML Email Signatures. Some search results do include signature.
From the research I've compiled I've seen that it's best to create HTML Email Signatures with the legacy layout method using the <table> element (Mainly to support Outlook), then I see it mentioned and used a lot less often that you can also use <div> for more flexibility with other email clients for both mobile and desktop and then also the use of "Ghost Tables" in combination with <div> to add support for Outlook and get the flexibility for other email clients.
For just HTML Emails the use of <div> is mentioned often and encouraged for flexibility across different email clients for desktop and mobile and <table> element is also mentioned often as a legacy way of laying out HTML Emails along with the use of "Ghost Tables" and <div>.
So I guess another way to ask this question is. Can the same code convention for HTML Emails (Use of <div> and <table>) be used to make HTML Email Signatures? Is there any code difference or can the same code be used for both?