mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
Add imprint to 'accountMultiRegistration'
This commit is contained in:
parent
d1f0ae7fa1
commit
dd760a650b
@ -65,6 +65,8 @@ export const sendAccountMultiRegistrationEmail = (data: {
|
|||||||
lastName: data.lastName,
|
lastName: data.lastName,
|
||||||
locale: data.language,
|
locale: data.language,
|
||||||
resendLink: CONFIG.EMAIL_LINK_FORGOTPASSWORD,
|
resendLink: CONFIG.EMAIL_LINK_FORGOTPASSWORD,
|
||||||
|
supportEmail: CONFIG.COMMUNITY_SUPPORT_MAIL,
|
||||||
|
communityURL: CONFIG.COMMUNITY_URL,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@ -5,18 +5,19 @@ html(lang=locale)
|
|||||||
body
|
body
|
||||||
h1(style='margin-bottom: 24px;')= t('emails.accountMultiRegistration.subject')
|
h1(style='margin-bottom: 24px;')= t('emails.accountMultiRegistration.subject')
|
||||||
#container.col
|
#container.col
|
||||||
p(style='margin-bottom: 24px;')= t('emails.general.helloName', { firstName, lastName })
|
include ../hello.pug
|
||||||
p= t('emails.accountMultiRegistration.emailReused')
|
p
|
||||||
|
= t('emails.accountMultiRegistration.emailReused')
|
||||||
br
|
br
|
||||||
span= t('emails.accountMultiRegistration.emailExists')
|
= t('emails.accountMultiRegistration.emailExists')
|
||||||
p= t('emails.accountMultiRegistration.onForgottenPasswordClickLink')
|
p
|
||||||
|
= t('emails.accountMultiRegistration.onForgottenPasswordClickLink')
|
||||||
br
|
br
|
||||||
a(href=resendLink) #{resendLink}
|
a(href=resendLink) #{resendLink}
|
||||||
br
|
br
|
||||||
span= t('emails.accountMultiRegistration.onForgottenPasswordCopyLink')
|
= t('emails.accountMultiRegistration.onForgottenPasswordCopyLink')
|
||||||
p= t('emails.accountMultiRegistration.ifYouAreNotTheOne')
|
p
|
||||||
|
= t('emails.accountMultiRegistration.ifYouAreNotTheOne')
|
||||||
br
|
br
|
||||||
a(href='https://gradido.net/de/contact/') https://gradido.net/de/contact/
|
a(href='https://gradido.net/de/contact/') https://gradido.net/de/contact/
|
||||||
p(style='margin-top: 24px;')= t('emails.general.sincerelyYours')
|
include ../greatingFormularImprint.pug
|
||||||
br
|
|
||||||
span= t('emails.general.yourGradidoTeam')
|
|
||||||
|
|||||||
11
backend/src/emails/templates/greatingFormularImprint.pug
Normal file
11
backend/src/emails/templates/greatingFormularImprint.pug
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
p(style='margin-top: 24px;')= t('emails.general.sincerelyYours')
|
||||||
|
br
|
||||||
|
= t('emails.general.yourGradidoTeam')
|
||||||
|
p(style='margin-top: 24px;')= '—————'
|
||||||
|
p(style='margin-top: 24px;')
|
||||||
|
each line in t('general.imprint').split(/\n/)
|
||||||
|
= line
|
||||||
|
br
|
||||||
|
a(href='mailto:' + supportEmail)= supportEmail
|
||||||
|
br
|
||||||
|
a(href=communityURL)= communityURL
|
||||||
1
backend/src/emails/templates/hello.pug
Normal file
1
backend/src/emails/templates/hello.pug
Normal file
@ -0,0 +1 @@
|
|||||||
|
p(style='margin-bottom: 24px;')= t('emails.general.helloName', { firstName, lastName })
|
||||||
@ -47,7 +47,7 @@
|
|||||||
},
|
},
|
||||||
"transactionLinkRedeemed": {
|
"transactionLinkRedeemed": {
|
||||||
"hasRedeemedYourLink": "{senderFirstName} {senderLastName} ({senderEmail}) hat soeben deinen Link eingelöst.",
|
"hasRedeemedYourLink": "{senderFirstName} {senderLastName} ({senderEmail}) hat soeben deinen Link eingelöst.",
|
||||||
"memo": "Memo: {transactionMemo}",
|
"memo": "Nachricht: {transactionMemo}",
|
||||||
"subject": "Gradido: Dein Gradido-Link wurde eingelöst"
|
"subject": "Gradido: Dein Gradido-Link wurde eingelöst"
|
||||||
},
|
},
|
||||||
"transactionReceived": {
|
"transactionReceived": {
|
||||||
@ -56,6 +56,8 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"general": {
|
"general": {
|
||||||
"decimalSeparator": ","
|
"decimalSeparator": ",",
|
||||||
|
"imprint": "Gradido-Akademie\nInstitut für Wirtschaftsbionik\nPfarrweg 2\n74653 Künzelsau\nDeutschland",
|
||||||
|
"supportEmail": "support@gradido.net"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -47,7 +47,7 @@
|
|||||||
},
|
},
|
||||||
"transactionLinkRedeemed": {
|
"transactionLinkRedeemed": {
|
||||||
"hasRedeemedYourLink": "{senderFirstName} {senderLastName} ({senderEmail}) has just redeemed your link.",
|
"hasRedeemedYourLink": "{senderFirstName} {senderLastName} ({senderEmail}) has just redeemed your link.",
|
||||||
"memo": "Memo: {transactionMemo}",
|
"memo": "Message: {transactionMemo}",
|
||||||
"subject": "Gradido: Your Gradido link has been redeemed"
|
"subject": "Gradido: Your Gradido link has been redeemed"
|
||||||
},
|
},
|
||||||
"transactionReceived": {
|
"transactionReceived": {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user