Components

Style

A Style component used to add styles to the document.

Usage

Add the component to your email template. Include styles where needed, make sure they live inside the <EHead> component.

<script setup>
import { EHead, EStyle } from 'vue-email'
</script>

<template>
  <EHead>
    <title>Email title</title>
    <meta name="description" content="Description">
    <EStyle>
      body { background-color: #fff; }
    </EStyle>
  </EHead>
</template>