mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
24 lines
1.2 KiB
TypeScript
24 lines
1.2 KiB
TypeScript
import { msg } from '@lingui/core/macro';
|
|
|
|
export const TEMPLATE_RECIPIENT_EMAIL_PLACEHOLDER_REGEX = /recipient\.\d+@documenso\.com/i;
|
|
export const TEMPLATE_RECIPIENT_NAME_PLACEHOLDER_REGEX = /Recipient \d+/i;
|
|
|
|
export const DIRECT_TEMPLATE_DOCUMENTATION = [
|
|
{
|
|
title: msg`Enable Direct Link Signing`,
|
|
description: msg`Once enabled, you can select any active recipient to be a direct link signing recipient, or create a new one. This recipient type cannot be edited or deleted.`,
|
|
},
|
|
{
|
|
title: msg`Configure Direct Recipient`,
|
|
description: msg`Update the role and add fields as required for the direct recipient. The individual who uses the direct link will sign the document as the direct recipient.`,
|
|
},
|
|
{
|
|
title: msg`Share the Link`,
|
|
description: msg`Once your template is set up, share the link anywhere you want. The person who opens the link will be able to enter their information in the direct link recipient field and complete any other fields assigned to them.`,
|
|
},
|
|
{
|
|
title: msg`Document Creation`,
|
|
description: msg`After submission, a document will be automatically generated and added to your documents page. You will also receive a notification via email.`,
|
|
},
|
|
];
|