Description Usage Arguments See Also Examples
Display a table of items with calculated total price.
| 1 2 3 | 
| ... | Unnamed items that comprise this list of MJML tags. | 
https://mjml.io/documentation/#mjml-invoice
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | mj_ml(
  mj_body(
    mj_container(
      mj_section(
        mj_column(
          mj_invoice(
            format = "0,00.00€",
            intl = "name:Product Name",
            mj_invoice_item(name = "TV", price = "549€", quantity = "1"),
            mj_invoice_item(name = "DVD - Iron Man II", price = "22.99€", quantity = "2")
          )
        )
      )
    )
  )
)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.