invoice: Invoice

Description Usage Arguments See Also Examples

Description

Display a table of items with calculated total price.

Usage

1
2
3

Arguments

...

Unnamed items that comprise this list of MJML tags.

See Also

https://mjml.io/documentation/#mjml-invoice

Examples

 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")
          )
        )
      )
    )
  )
)

JohnCoene/mjml documentation built on June 21, 2020, 11:42 a.m.