mirror of
https://github.com/versia-pub/server.git
synced 2026-03-13 13:59:16 +01:00
Begin work on sending emails
This commit is contained in:
parent
a4f6ce42c6
commit
0469187876
6 changed files with 30 additions and 9 deletions
16
packages/frontend/emails/welcome.vue
Normal file
16
packages/frontend/emails/welcome.vue
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<script setup lang="ts">
|
||||
import { ETailwind, EButton } from "vue-email";
|
||||
import tailwindConfig from "~/tailwind.config";
|
||||
|
||||
defineProps<{
|
||||
name: string;
|
||||
}>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<ETailwind :config="tailwindConfig">
|
||||
<EButton href="https://example.com" class="bg-primary px-3 py-2 font-medium leading-4 text-white">
|
||||
Click me
|
||||
</EButton>
|
||||
</ETailwind>
|
||||
</template>
|
||||
Loading…
Add table
Add a link
Reference in a new issue