diff --git a/packages/email/templates/document-invite.tsx b/packages/email/templates/document-invite.tsx index e0d521c28..661a2fd5f 100644 --- a/packages/email/templates/document-invite.tsx +++ b/packages/email/templates/document-invite.tsx @@ -81,9 +81,11 @@ export const DocumentInviteEmailTemplate = ({ - {customBody - ? customBody - : `${inviterName} has invited you to sign the document "${documentName}".`} + {customBody ? ( +
{customBody}
+ ) : ( + `${inviterName} has invited you to sign the document "${documentName}".` + )}