mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
28 lines
785 B
TypeScript
28 lines
785 B
TypeScript
import { NEXT_PUBLIC_WEBAPP_URL } from "../constants";
|
|
import { baseEmailTemplate } from "./baseTemplate";
|
|
|
|
export const signingCompleteTemplate = (message: string) => {
|
|
const customContent = `
|
|
<div style="
|
|
width: 100px;
|
|
height: 100px;
|
|
margin: auto;
|
|
padding-top: 14px;
|
|
">
|
|
<img src="${NEXT_PUBLIC_WEBAPP_URL}/images/signed_100.png" alt="Documenso Logo" style="width: 100px; display: block;">
|
|
</div>
|
|
|
|
<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://documenso.com">Hosted Documenso is here!</a>.</small>
|
|
</p>`;
|
|
|
|
const html = baseEmailTemplate(message, customContent);
|
|
|
|
return html;
|
|
};
|
|
|
|
export default signingCompleteTemplate;
|