MCPcopy Index your code
hub / github.com/GauBen/svelte-emails

github.com/GauBen/svelte-emails @main

Chat with this repo
repository ↗ · DeepWiki ↗ · + Follow
5 symbols 21 edges 11 files 0 documented · 0%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Rendering emails with Svelte

Rendering emails with Svelte

Emails are the cornerstone of automated internet communication. Create an account on a website? Email. Receive an invoice? Email. Sign up for an event? Email. As a developer, you will need to send emails at some point. And you will end up working with some of the most legacy web technologies.

We, at Escape, recently rebuilt our whole email stack from scratch to improve the developer experience: we used to send emails to preview them, whereas now, we have an instant feedback loop, leveraging a SvelteKit-powered dev server.

Emails are written with 2003 HTML

If you started web development before 2000, chances are you worked on websites designed with <table>-based layouts. It was the way to design complex two-dimensional layouts.

<table> everywhere meme made with imgflip

Well, unfortunately for us, email clients are still stuck in the dark ages. We, therefore, have four possibilities to write emails:

  • Write them by hand and learn the quirks of the old <table>-based layout system with loads of </mj-head> <mj-body>${body}</mj-body> </mjml>; const html = mjml2html(document(mail({ name: "World" }))); ```

  • We would send the resulting HTML:

```js let transporter = nodemailer.createTransport();

await transporter.sendMail({ from: "support@example.com", to: "client@example.com", subject: "Hello!", html, }); ```

Apart from that, we also want:

  • A way to preview the emails, and the easiest way to get live-reload in a Svelte project is to use SvelteKit.
  • Compile-time type checking for props, which is made possible by svelte2tsx.

Our setup will be in two parts:

  • Setting up a development server to create and preview emails.
  • Setting up a build pipeline to compile emails to HTML strings.

The dev server

SvelteKit offers a fantastic developer experience to work with Svelte and was just released as stable, so it is a no-brainer to use it.

You can clone the whole experiment from GitHub. We will go through the most interesting parts in the rest of the article.

You will find a complete SvelteKit project in packages/svelte-emails:

  • index.ts: This is our library entry point.

```ts // Export the renderer export { render } from "./lib/index.js";

// Also export compiled Svelte components export * from "./mails/index.js"; ```

  • lib/
  • Header.svelte: This is our common email header. MJML offers a lot of components out of the box.

    ```svelte

      <slot />
    </mj-text>
    <mj-divider border-color="#ff3e00" />
    

    ```

  • index.ts: It contains the MJML rendering logic.

    ```ts /* Renders a Svelte component as email-ready HTML. / export const render = ( component: T, props: ComponentProps, ) => { // Render the component to MJML const { head, body } = svelte.render(component, { props });

    const mjml = <mjml> <mj-head>${head}</mj-head> <mj-body>${body}</mj-body> </mjml>;

    // Render MJML to HTML const { html } = mjml2html(mjml);

    return html; }; ```

  • mails/: This is the root HTTP directory, and it will also contain our emails.

  • index.ts: This file reexports all the emails.

    ts export { default as HelloWorld } from "./hello-world/Mail.svelte";

  • hello-world/

    ```svelte

    Hello {name}!

    Learn Svelte ```

    ts export const load = async () => ({ email: render(Mail, { // This is type-checked! name: "World", }), });

That is quite a lot of code! Let's try it out:

# Start the dev server
yarn dev

Go to localhost:5173/hello-world to see the email preview, and edit anything to see it update in real-time.

A screenshot of the resulting email, with a title and a button

The build pipeline

We now have a working development environment, but we need to build our emails for production. We will use Rollup to bundle our emails, and svelte2tsx to emit type declarations.

The rollup.config.js file defines our build pipeline:

export default {
  input: "src/mails/index.ts",
  plugins: [
    {
      /** Export component's types at the end of the build. */
      name: "rollup-plugin-svelte2dts",
      async buildEnd() {
        const require = createRequire(import.meta.url);

        // All the heavy lifting is done by svelte2tsx
        await emitDts({
          svelteShimsPath: require.resolve("svelte2tsx/svelte-shims-v4.d.ts"),
          declarationDir: "build",
          libRoot: "src",
          tsconfig: path.resolve("tsconfig.json"),
        });
      },
    },
    svelte({
      ...svelteConfig,
      compilerOptions: { generate: "server" },
      emitCss: false,
    }),
  ],
};

Run yarn build to transform the Svelte emails components into raw JavaScript.

Wrapping up

Using our built emails in a NodeJS app is as simple as:

import { render, HelloWorld } from "svelte-emails";

const html = render(HelloWorld, {
  // This is type-checked!
  name: "World",
});
console.log(html);

There is a demo package in the repo for you to try out.


This concludes this experiment. We are still tinkering with a few things to make it easier to use, but we hope you enjoyed this article. Feel free to ask questions or give feedback on how you are currently developing emails, we are eager to hear from you!

Core symbols most depended-on inside this repo

render
called by 2
packages/svelte-emails/src/lib/index.ts
buildEnd
called by 0
packages/svelte-emails/rollup.config.js
load
called by 0
packages/svelte-emails/src/mails/+page.server.ts
load
called by 0
packages/svelte-emails/src/mails/hello-world/+page.server.ts
greet
called by 0
packages/svelte-emails/src/mails/hello-world/dep.ts

Shape

Function 5

Languages

TypeScript100%

Modules by API surface

packages/svelte-emails/src/mails/hello-world/dep.ts1 symbols
packages/svelte-emails/src/mails/hello-world/+page.server.ts1 symbols
packages/svelte-emails/src/mails/+page.server.ts1 symbols
packages/svelte-emails/src/lib/index.ts1 symbols
packages/svelte-emails/rollup.config.js1 symbols

For agents

$ claude mcp add svelte-emails \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact