From da622135790b07e5fff2108b06712b7b15e2d0d9 Mon Sep 17 00:00:00 2001 From: flfeders Date: Mon, 30 Sep 2024 18:49:43 +0200 Subject: [PATCH] Added E-Mail Sending --- components/MainNav.vue | 4 + pages/settings/emailAccounts.vue | 123 +++++++++++++++++++++++++++++++ 2 files changed, 127 insertions(+) create mode 100644 pages/settings/emailAccounts.vue diff --git a/components/MainNav.vue b/components/MainNav.vue index f3b5acb..0773306 100644 --- a/components/MainNav.vue +++ b/components/MainNav.vue @@ -220,6 +220,10 @@ const links = computed(() => { label: "Mitarbeiter", to: "/profiles", icon: "i-heroicons-clipboard-document-list" + },{ + label: "E-Mail Accounts", + to: "/settings/emailAccounts", + icon: "i-heroicons-clipboard-document-list" },{ label: "Bankkonten", to: "/settings/banking", diff --git a/pages/settings/emailAccounts.vue b/pages/settings/emailAccounts.vue new file mode 100644 index 0000000..4891f33 --- /dev/null +++ b/pages/settings/emailAccounts.vue @@ -0,0 +1,123 @@ + + + + + \ No newline at end of file