Neue E-Mail Sending Seite

This commit is contained in:
2026-02-14 11:50:58 +01:00
parent c0faa398b8
commit 7ea28cc6c0
2 changed files with 250 additions and 4 deletions

View File

@@ -1,5 +1,4 @@
<script setup>
//TODO: BACKENDCHANGE EMAIL SENDING
const dataStore = useDataStore()
const profileStore = useProfileStore()
const route = useRoute()
@@ -38,7 +37,7 @@ const setupPage = async () => {
if(route.query.to) emailData.value.to = route.query.to
if(route.query.cc) emailData.value.cc = route.query.cc
if(route.query.bcc) emailData.value.bcc = route.query.bcc
if(route.query.subject) emailData.value.to = route.query.subject
if(route.query.subject) emailData.value.subject = route.query.subject
if(route.query.loadDocuments) {
@@ -285,7 +284,7 @@ const sendEmail = async () => {
</div>
<Tiptap
<EmailTiptapEditor
class="mt-3"
@updateContent="contentChanged"
:preloadedContent="preloadedContent"
@@ -346,4 +345,4 @@ const sendEmail = async () => {
scrollbar-width: none; /* Firefox */
}
</style>
</style>