💬 🗃️ user signup source and viral signup links

This commit is contained in:
Timur Ercan
2023-02-23 20:02:33 +01:00
parent fb31156e80
commit 40a32073dd
7 changed files with 27 additions and 6 deletions

View File

@ -15,6 +15,9 @@ export const signingCompleteTemplate = (message: string) => {
<p style="margin-top: 14px;">
A copy of the signed document has been attached to this email.
</p>
<p style="margin-top: 14px;">
<small>Like Documenso? <a href="https://app.documenso.com/signup?source=completemail">Create your own acccount</a>.</small>
</p>`;
const html = baseEmailTemplate(message, customContent);

View File

@ -16,6 +16,9 @@ export const signingRequestTemplate = (
${ctaLabel}
</a>
</p>
<p style="margin-top: 14px;">
<small>Want to send you own signing links? <a href="https://app.documenso.com/signup?source=signrequest">Create your own acccount</a>.</small>
</p>
<hr size="1" style="height:1px;border:none;color:#e0e0e0;background-color:#e0e0e0">
Click the button to view "${document.title}".<br>
<small>If you have questions about this document, you should ask ${user.name}.</small>

View File

@ -18,6 +18,7 @@ model User {
email String @unique
emailVerified DateTime?
password String?
source String?
identityProvider IdentityProvider @default(DOCUMENSO)
accounts Account[]
sessions Session[]