mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
fix: persist newline in emails
This commit is contained in:
committed by
Mythie
parent
345343f4b5
commit
22f9400932
@ -81,9 +81,11 @@ export const DocumentInviteEmailTemplate = ({
|
|||||||
</Text>
|
</Text>
|
||||||
|
|
||||||
<Text className="mt-2 text-base text-slate-400">
|
<Text className="mt-2 text-base text-slate-400">
|
||||||
{customBody
|
{customBody ? (
|
||||||
? customBody
|
<pre className="font-sans text-base text-slate-400">{customBody}</pre>
|
||||||
: `${inviterName} has invited you to sign the document "${documentName}".`}
|
) : (
|
||||||
|
`${inviterName} has invited you to sign the document "${documentName}".`
|
||||||
|
)}
|
||||||
</Text>
|
</Text>
|
||||||
</Section>
|
</Section>
|
||||||
</Container>
|
</Container>
|
||||||
|
|||||||
Reference in New Issue
Block a user