components

Display a block that separates content areas horizontally in your email.

Usage

Add the component to your email template. Include styles where needed.

<script setup>
import { ERow, EText } from 'vue-email';
</script>

<template>
  <e-row>
    <e-text>My simple text</e-text>
  </e-row>
</template>