1

am trying without success to add a <!Doctype html> tag at the begging of my rendered component. Am doing a email signature generator where the user copies the rendered table but can't find a way to include the tag. Is that even possible? Thank you

  function renderHTML() {
    return employeData
      .filter((nom) => nom.value === nomValue)
      .map((employe) => {
        return (
          <html key={employe._id} xmlns="http://www.w3.org/1999/xhtml">
            <head>
              <span
                dangerouslySetInnerHTML={{
                  __html: `<!--[if !mso]><!-- -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--<![endif]-->
`,
                }}
              />
              <meta name="x-apple-disable-message-reformatting" />
              <meta
                httpEquiv="Content-Type"
                content="text/html; charset=UTF-8"
              />
              <meta
                name="viewport"
                content="width=device-width, initial-scale=1"
              />

              <span
                dangerouslySetInnerHTML={{
                  __html: `<!--[if mso]>
      <xml>
Rustyblue100
  • 51
  • 1
  • 10

0 Answers0