mjml.social_element

mjml.social_element(attributes=None, content=None)

Create an MJML <mj-social-element> tag.

This is an ending tag that accepts text/HTML content but not MJML children.

Parameters

attributes : Optional[TagAttrs] = None

Optional dict of tag attributes

content : Optional[str] = None

Text or HTML content for the tag

Returns

: MJMLTag

MJMLTag object representing

Examples

With content: social_element(content=“Hello”)

With attributes and content: social_element(attributes={“color”: “red”}, content=“Hello”)