From ed3761f457224fa512556bf111ab24a829f687c0 Mon Sep 17 00:00:00 2001 From: clauspeterhuebner Date: Mon, 23 Feb 2026 22:10:25 +0100 Subject: [PATCH] remove mailto command from mail-template --- .../templates/transactionReceivedNoSender/html.pug | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/core/src/emails/templates/transactionReceivedNoSender/html.pug b/core/src/emails/templates/transactionReceivedNoSender/html.pug index a3d16e9b9..c64e4ee13 100644 --- a/core/src/emails/templates/transactionReceivedNoSender/html.pug +++ b/core/src/emails/templates/transactionReceivedNoSender/html.pug @@ -1,10 +1,11 @@ extend ../layout.pug block content - mixin mailto(email, subject) - - var formattedSubject = encodeURIComponent(subject) - a(class!=attributes.class href=`mailto:${email}?subject=${formattedSubject}`) - block + // + mixin mailto(email, subject) + - var formattedSubject = encodeURIComponent(subject) + a(class!=attributes.class href=`mailto:${email}?subject=${formattedSubject}`) + block - var subject= t('emails.transactionReceived.replySubject', { senderFirstName, senderLastName, transactionAmount }) h2= t('emails.transactionReceived.title', { senderFirstName, senderLastName, transactionAmount })