Files
AstralRinth/apps/frontend/src/templates/emails/moderation/ReportSubmitted.vue
Calum H. cb5600ad45 feat: doc templating & cleanup of routes (#4411)
* feat: clean up route structure

* feat: install html-pdf-node-ts

* fea

* feat: use @ceereals/vue-pdf (react-pdf)

* feat: remove pdf

* feat: hide cc

* feat: shared template

* feat: payment statement document & redirect for emails

* feat: layout tweaks

* fix: lint issues

* fix: robots.txt

* feat: remove letterhead

* Delete .claude/settings.local.json

Signed-off-by: Calum H. <contact@cal.engineer>

---------

Signed-off-by: Calum H. <contact@cal.engineer>
2025-10-07 10:47:59 +00:00

52 lines
1.6 KiB
Vue

<script setup lang="ts">
import { Heading, Link as VLink, Text } from '@vue-email/components'
import StyledEmail from '../shared/StyledEmail.vue'
</script>
<template>
<StyledEmail
title="Report of {report.title} has been submitted"
:manual-links="[
{ link: 'https://modrinth.com/legal/rules', label: 'Community Guidelines' },
{
link: 'https://modrinth.com/dashboard/report/{newreport.id}',
label: 'View report in dashboard',
},
{ link: 'https://support.modrinth.com', label: 'Support Portal' },
]"
>
<Heading as="h1" class="mb-2 text-2xl font-bold"
>Report of {report.title} has been submitted</Heading
>
<Text class="text-base">Hi {user.name},</Text>
<Text class="text-base">
We've received your report of {report.title} and our moderation team will review it shortly.
</Text>
<Text class="text-base">
Our team takes all reports seriously and will investigate according to our
<VLink href="https://modrinth.com/legal/rules" class="text-green underline"
>Content Rules</VLink
>, <VLink href="https://modrinth.com/legal/terms">Terms of Service</VLink> and
<VLink href="https://modrinth.com/legal/copyright">Copyright Policy</VLink>. You'll receive an
email update once we've completed our review.
</Text>
<Text class="text-base">
If you have any additional information about this report, you can
<VLink
href="https://modrinth.com/dashboard/report/{newreport.id}"
class="text-green underline"
>view it here</VLink
>.
</Text>
<Text class="text-base">
Thank you for helping keep Modrinth safe and welcoming for everyone.
</Text>
</StyledEmail>
</template>