mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 01:46:07 +00:00
31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
extend ../layout.pug
|
|
|
|
block content
|
|
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 })
|
|
.text-block
|
|
include ../includes/salutation.pug
|
|
p
|
|
= t('emails.transactionReceived.haveReceivedAmountGDDFrom', { transactionAmount, senderFirstName, senderLastName })
|
|
| (
|
|
+mailto(senderEmail, subject)=senderEmail
|
|
|).
|
|
.content
|
|
h2= t('emails.general.message')
|
|
.child-left
|
|
div(class="p_content")= memo
|
|
.child-right
|
|
+mailto(senderEmail, subject)(class="button-5")
|
|
include ../includes/chatbox-icon.pug
|
|
span #{t('emails.general.answerNow')}
|
|
|
|
a.button-3(href=`${communityURL}/transactions`) #{t('emails.general.toAccount')}
|
|
|
|
|
|
|