Neue E-Mail Sending Seite
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user