UNPKG

591 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const base_1 = require("./base");
4exports.userInviteEmail = (title, link, invitationCopy, expiryCopy) => {
5 const content = `
6 <div>
7 <p>Welcome,</p>
8 <p>${invitationCopy} Please click the button below to activate your account.
9 ${expiryCopy ? ` This link will expire in ${expiryCopy}.` : ''}</p>
10 </div>
11 <div>
12 ${base_1.mainButton('Activate Account', link)}
13 </div>
14 `;
15 return base_1.standardEmail(title, content);
16};
17//# sourceMappingURL=invite.js.map
\No newline at end of file