# Email Tags These tags are designed for use in email templates. They help structure email content, insert dynamic data, and control rendering logic specific to emails. Use these tags to create dynamic, personalized, and well-structured email messages. ## block Renders a block from the **blocks** folder of the theme. To statically include a block, use the following syntax: ```liquid {% block 'name' id:'custom-id' color:'#ff0000' %} ``` --- ## container Wraps a block container. To create a default container just use the plain `container` tag without the name. ```liquid {% container %} ``` You can also create block containers dynamically as names can be defined as variables: ```liquid {% for i in (1..10) %} {% assign name = 'my-block-container-' | append: i %} {% container name %} {% endfor %} ``` --- ## plaintext Captures plain text content for the template. ```liquid {% plaintext %} Hi customer, This is the plain text content for your email. {% endplaintext %} ``` --- ## section Renders a section from the **sections** folder of the theme. **Input** ```liquid {% section 'my-section' %} ``` **Output** ```html ```