diff --git a/backend/src/config/index.ts b/backend/src/config/index.ts index 9aa71b3c5..c49f6c8c2 100644 --- a/backend/src/config/index.ts +++ b/backend/src/config/index.ts @@ -79,8 +79,6 @@ const email = { EMAIL_TEST_RECEIVER: process.env.EMAIL_TEST_RECEIVER ?? 'stage1@gradido.net', EMAIL_USERNAME: process.env.EMAIL_USERNAME ?? '', EMAIL_SENDER: process.env.EMAIL_SENDER ?? 'info@gradido.net', - EMAIL_SENDER_GRADIDOS_RECEIVED: - process.env.EMAIL_SENDER_GRADIDOS_RECEIVED ?? 'noreply@gradido.net', EMAIL_PASSWORD: process.env.EMAIL_PASSWORD ?? '', EMAIL_SMTP_URL: process.env.EMAIL_SMTP_URL ?? 'mailserver', EMAIL_SMTP_PORT: Number(process.env.EMAIL_SMTP_PORT) || 1025, diff --git a/backend/src/emails/sendEmailVariants.ts b/backend/src/emails/sendEmailVariants.ts index 33509c9c6..ff7709380 100644 --- a/backend/src/emails/sendEmailVariants.ts +++ b/backend/src/emails/sendEmailVariants.ts @@ -230,7 +230,7 @@ export const sendTransactionReceivedEmail = (data: { locale: data.language, senderFirstName: data.senderFirstName, senderLastName: data.senderLastName, - senderEmail: CONFIG.EMAIL_SENDER_GRADIDOS_RECEIVED, + senderEmail: data.senderEmail, transactionAmount: decimalSeparatorByLanguage(data.transactionAmount, data.language), overviewURL: CONFIG.EMAIL_LINK_OVERVIEW, supportEmail: CONFIG.COMMUNITY_SUPPORT_MAIL, diff --git a/backend/src/emails/templates/includes/footer.pug b/backend/src/emails/templates/includes/footer.pug index 3ae63e32e..dac7bffe0 100644 --- a/backend/src/emails/templates/includes/footer.pug +++ b/backend/src/emails/templates/includes/footer.pug @@ -40,7 +40,10 @@ footer .line .footer div(class="footer_p1")= t("emails.footer.contactOurSupport") - div(class="footer_p2")= t("emails.footer.supportEmail") + a( + class="footer_p2" + href='mailto:' + t("emails.footer.supportEmail"))= t("emails.footer.supportEmail" + ) img.image( alt="Gradido Logo" src="https://gdd.gradido.net/img/brand/green.png" diff --git a/frontend/src/components/ContentFooter.vue b/frontend/src/components/ContentFooter.vue index c563cc23d..28fc8997f 100755 --- a/frontend/src/components/ContentFooter.vue +++ b/frontend/src/components/ContentFooter.vue @@ -44,7 +44,7 @@ > {{ $t('footer.whitepaper') }} - + {{ $t('navigation.support') }}