mjml.wrapper

mjml.wrapper(*args, attributes=None, content=None)

Create an MJML <mj-wrapper> tag.

Parameters

*args : TagChild = ()

Children (MJMLTag objects)

attributes : Optional[TagAttrs] = None

Optional dict of tag attributes

content : Optional[str] = None

Optional text content for the tag

Returns

: MJMLTag

MJMLTag object representing <mj-wrapper>

Examples

With children:

from emailer_lib.mjml import wrapper, text
child = text("Hello World")

result = wrapper(child)

With attributes:

result = wrapper(attributes={"attr": "value"})

With both:

result = wrapper(child, attributes={"background-color": "yellow"})