mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
pass options to html template
This commit is contained in:
parent
dcbeed319d
commit
c94715a128
@ -188,6 +188,21 @@
|
|||||||
<td>
|
<td>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
|
|
||||||
|
<!-- Visually Hidden Preheader Text : BEGIN -->
|
||||||
|
<div
|
||||||
|
style="display: none; font-size: 1px; line-height: 1px; max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden; mso-hide: all; font-family: sans-serif;">
|
||||||
|
Here is your signup link.
|
||||||
|
</div>
|
||||||
|
<!-- Visually Hidden Preheader Text : END -->
|
||||||
|
|
||||||
|
<!-- Create white space after the desired preview text so email clients don’t pull other distracting text into the inbox preview. Extend as necessary. -->
|
||||||
|
<!-- Preview Text Spacing Hack : BEGIN -->
|
||||||
|
<div
|
||||||
|
style="display: none; font-size: 1px; line-height: 1px; max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden; mso-hide: all; font-family: sans-serif;">
|
||||||
|
‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌
|
||||||
|
</div>
|
||||||
|
<!-- Preview Text Spacing Hack : END -->
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Set the email width. Defined in two places:
|
Set the email width. Defined in two places:
|
||||||
1. max-width for all clients except Desktop Windows Outlook, allowing the email to squish on narrow but never go wider than 600px.
|
1. max-width for all clients except Desktop Windows Outlook, allowing the email to squish on narrow but never go wider than 600px.
|
||||||
|
|||||||
@ -10,7 +10,7 @@ export const signupTemplate = options => {
|
|||||||
const {
|
const {
|
||||||
email,
|
email,
|
||||||
nonce,
|
nonce,
|
||||||
subject = 'Welcome to Human Connection! Here is your signup link.',
|
subject = 'Welcome to Human Connection!',
|
||||||
supportUrl = 'https://human-connection.org/en/contact/',
|
supportUrl = 'https://human-connection.org/en/contact/',
|
||||||
} = options
|
} = options
|
||||||
const actionUrl = new URL('/registration/create-user-account', CONFIG.CLIENT_URI)
|
const actionUrl = new URL('/registration/create-user-account', CONFIG.CLIENT_URI)
|
||||||
@ -21,6 +21,6 @@ export const signupTemplate = options => {
|
|||||||
to: email,
|
to: email,
|
||||||
subject,
|
subject,
|
||||||
text: mustache.render(signupText, { actionUrl, nonce, supportUrl }),
|
text: mustache.render(signupText, { actionUrl, nonce, supportUrl }),
|
||||||
html: mustache.render(signupHtml, {}),
|
html: mustache.render(signupHtml, { actionUrl, nonce, supportUrl }),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user