protonfile-auth 1.6.3 → 1.6.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/README.md +22 -1
  2. package/lib/Entities/OTP.d.ts +10 -9
  3. package/lib/Entities/OTP.js +48 -47
  4. package/lib/Entities/Session.d.ts +10 -9
  5. package/lib/Entities/Session.js +36 -33
  6. package/lib/Entities/TempToken.d.ts +5 -5
  7. package/lib/Entities/TempToken.js +22 -22
  8. package/lib/Entities/User.d.ts +9 -9
  9. package/lib/Entities/User.js +34 -34
  10. package/lib/controllers/change_password.d.ts +3 -3
  11. package/lib/controllers/change_password.js +59 -58
  12. package/lib/controllers/login.d.ts +3 -3
  13. package/lib/controllers/login.js +40 -40
  14. package/lib/controllers/logout.d.ts +3 -3
  15. package/lib/controllers/logout.js +26 -27
  16. package/lib/controllers/qr.d.ts +3 -3
  17. package/lib/controllers/qr.js +55 -55
  18. package/lib/controllers/refresh_token.d.ts +3 -3
  19. package/lib/controllers/refresh_token.js +43 -52
  20. package/lib/controllers/register.d.ts +3 -3
  21. package/lib/controllers/register.js +57 -58
  22. package/lib/controllers/registerOtp.d.ts +3 -3
  23. package/lib/controllers/registerOtp.js +30 -30
  24. package/lib/index.d.ts +31 -29
  25. package/lib/index.js +58 -58
  26. package/lib/middlewares/appendSessionCache.d.ts +4 -4
  27. package/lib/middlewares/appendSessionCache.js +7 -7
  28. package/lib/middlewares/appendUms.d.ts +4 -0
  29. package/lib/middlewares/appendUms.js +7 -0
  30. package/lib/middlewares/verifyToken.d.ts +4 -4
  31. package/lib/middlewares/verifyToken.js +34 -34
  32. package/lib/services/OTPVacuum.d.ts +7 -7
  33. package/lib/services/OTPVacuum.js +31 -31
  34. package/lib/services/SessionCache.d.ts +8 -8
  35. package/lib/services/SessionCache.js +25 -25
  36. package/lib/services/SessionCleaner.d.ts +7 -7
  37. package/lib/services/SessionCleaner.js +35 -39
  38. package/lib/services/TempToken.d.ts +12 -9
  39. package/lib/services/TempToken.js +47 -40
  40. package/lib/services/UMS.d.ts +12 -0
  41. package/lib/services/UMS.js +31 -0
  42. package/lib/services/auth.d.ts +8 -11
  43. package/lib/services/auth.js +60 -105
  44. package/lib/services/mail/index.d.ts +36 -36
  45. package/lib/services/mail/index.js +101 -101
  46. package/lib/services/mail/templates/default.d.ts +2 -2
  47. package/lib/services/mail/templates/default.js +268 -268
  48. package/lib/services/session.d.ts +10 -9
  49. package/lib/services/session.js +81 -91
  50. package/package.json +52 -43
@@ -1,11 +1,8 @@
1
- import { Response, Request } from 'express';
2
- import { User } from '../Entities/User';
3
- export declare const createAccessToken: (payload: any) => string;
4
- export declare const createRefreshToken: (payload: any) => string;
5
- export declare const setRefreshTokenCookie: (res: Response, value: string) => Promise<void>;
6
- export declare const clearRefreshTokenCookie: (res: Response) => Promise<Response<any, Record<string, any>>>;
7
- export declare const generateQrAuth: () => Promise<{
8
- request_id: string;
9
- token: string;
10
- }>;
11
- export declare const performLogin: (req: Request, res: Response, user: User) => Promise<string>;
1
+ import { Response, Request } from 'express';
2
+ import { User } from '../Entities/User';
3
+ export declare const createAccessToken: (payload: any) => string;
4
+ export declare const generateQrAuth: () => Promise<{
5
+ request_id: string;
6
+ token: string;
7
+ }>;
8
+ export declare const performLogin: (req: Request, res: Response, user: User) => Promise<string>;
@@ -1,105 +1,60 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.performLogin = exports.generateQrAuth = exports.clearRefreshTokenCookie = exports.setRefreshTokenCookie = exports.createRefreshToken = exports.createAccessToken = void 0;
13
- const jsonwebtoken_1 = require("jsonwebtoken");
14
- const uuid_1 = require("uuid");
15
- const Session_1 = require("../Entities/Session");
16
- const session_1 = require("./session");
17
- const createAccessToken = (payload) => {
18
- return (0, jsonwebtoken_1.sign)({ user_id: payload.user_id, session_id: payload.session_id }, process.env.ACCESS_TOKEN_KEY, {
19
- expiresIn: '15m',
20
- });
21
- };
22
- exports.createAccessToken = createAccessToken;
23
- const createRefreshToken = (payload) => {
24
- return (0, jsonwebtoken_1.sign)({ user_id: payload.user_id }, process.env.REFRESH_TOKEN_KEY, {
25
- expiresIn: '7d',
26
- });
27
- };
28
- exports.createRefreshToken = createRefreshToken;
29
- const setRefreshTokenCookie = (res, value) => __awaiter(void 0, void 0, void 0, function* () {
30
- const currentTime = Math.floor(new Date().getTime() / 1000);
31
- const weekExpiration = currentTime + 86400 * 7; // adds 7 days to timestamp
32
- res.cookie('jid', value, {
33
- sameSite: 'none',
34
- expires: new Date(weekExpiration * 1000),
35
- httpOnly: true,
36
- secure: process.env.NODE_ENV === 'production' ? true : false,
37
- });
38
- });
39
- exports.setRefreshTokenCookie = setRefreshTokenCookie;
40
- const clearRefreshTokenCookie = (res) => __awaiter(void 0, void 0, void 0, function* () {
41
- return res.clearCookie('jid');
42
- });
43
- exports.clearRefreshTokenCookie = clearRefreshTokenCookie;
44
- const generateQrAuth = () => __awaiter(void 0, void 0, void 0, function* () {
45
- const id = (0, uuid_1.v4)();
46
- return {
47
- request_id: id,
48
- token: (0, jsonwebtoken_1.sign)({ auth_id: id }, process.env.ACCESS_TOKEN_KEY, {
49
- expiresIn: '5m',
50
- }),
51
- };
52
- });
53
- exports.generateQrAuth = generateQrAuth;
54
- const performLogin = (req, res, user) => {
55
- return new Promise((resolve, reject) => __awaiter(void 0, void 0, void 0, function* () {
56
- let session_id;
57
- (0, exports.setRefreshTokenCookie)(res, (0, exports.createRefreshToken)({
58
- user_id: user.user_id,
59
- }));
60
- if (req.cookies.session_id) {
61
- const session = JSON.parse(req.cookies.session_id);
62
- try {
63
- (0, session_1.verifySessionToken)(session.token);
64
- const newSession = yield (0, session_1.bumpSessionToken)(session.session_id);
65
- session_id = newSession.session_id;
66
- (0, session_1.setSessionCookie)(res, JSON.stringify(newSession));
67
- }
68
- catch (err) {
69
- yield (0, session_1.clearSessionCookie)(res);
70
- yield (0, exports.clearRefreshTokenCookie)(res);
71
- const insert = yield Session_1.Session.insert({
72
- token: (0, session_1.createSessionToken)({ user_id: user.user_id }),
73
- user_id: user.user_id,
74
- user_agent: req.headers['user-agent'] || 'Unknown',
75
- });
76
- const session = yield Session_1.Session.findOne({
77
- session_id: insert.generatedMaps[0].session_id,
78
- });
79
- if (!session) {
80
- return;
81
- }
82
- session_id = session.session_id;
83
- (0, session_1.setSessionCookie)(res, JSON.stringify(session));
84
- }
85
- }
86
- else {
87
- const insert = yield Session_1.Session.insert({
88
- token: (0, session_1.createSessionToken)({ user_id: user.user_id }),
89
- user_id: user.user_id,
90
- user_agent: req.headers['user-agent'] || 'Unknown',
91
- });
92
- const session = yield Session_1.Session.findOne({
93
- session_id: insert.generatedMaps[0].session_id,
94
- });
95
- if (!session) {
96
- return;
97
- }
98
- session_id = session.session_id;
99
- (0, session_1.setSessionCookie)(res, JSON.stringify(session));
100
- }
101
- const token = (0, exports.createAccessToken)({ user_id: user.user_id, session_id });
102
- resolve(token);
103
- }));
104
- };
105
- exports.performLogin = performLogin;
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.performLogin = exports.generateQrAuth = exports.createAccessToken = void 0;
13
+ const jsonwebtoken_1 = require("jsonwebtoken");
14
+ const uuid_1 = require("uuid");
15
+ const Session_1 = require("../Entities/Session");
16
+ const session_1 = require("./session");
17
+ const createAccessToken = (payload) => {
18
+ return (0, jsonwebtoken_1.sign)({ user_id: payload.user_id, session_id: payload.session_id }, process.env.ACCESS_TOKEN_KEY, {
19
+ expiresIn: '15m',
20
+ });
21
+ };
22
+ exports.createAccessToken = createAccessToken;
23
+ const generateQrAuth = () => __awaiter(void 0, void 0, void 0, function* () {
24
+ const id = (0, uuid_1.v4)();
25
+ return {
26
+ request_id: id,
27
+ token: (0, jsonwebtoken_1.sign)({ auth_id: id }, process.env.ACCESS_TOKEN_KEY, {
28
+ expiresIn: '5m',
29
+ }),
30
+ };
31
+ });
32
+ exports.generateQrAuth = generateQrAuth;
33
+ const performLogin = (req, res, user) => {
34
+ return new Promise((resolve, reject) => __awaiter(void 0, void 0, void 0, function* () {
35
+ if (req.cookies.pid)
36
+ return res.redirect(307, 'refresh_token');
37
+ const insert = yield Session_1.Session.insert({
38
+ user_id: user.user_id,
39
+ user_agent: req.headers['user-agent'] || 'Unknown',
40
+ version: 0,
41
+ last_used: (Date.now() / 1000).toFixed(0).toString(),
42
+ });
43
+ const session = yield Session_1.Session.findOne({
44
+ where: { session_id: insert.generatedMaps[0].session_id },
45
+ });
46
+ if (!session) {
47
+ return;
48
+ }
49
+ (0, session_1.setSessionCookie)(res, (0, session_1.createSessionToken)({
50
+ user_id: user.user_id,
51
+ session_id: session.session_id,
52
+ }));
53
+ const token = (0, exports.createAccessToken)({
54
+ user_id: user.user_id,
55
+ session_id: session.session_id,
56
+ });
57
+ resolve(token);
58
+ }));
59
+ };
60
+ exports.performLogin = performLogin;
@@ -1,36 +1,36 @@
1
- import { User } from '../../Entities/User';
2
- interface mailOptions {
3
- subject: string;
4
- html: string;
5
- text: string;
6
- }
7
- interface smtpConfig {
8
- host: string;
9
- auth: {
10
- user: string;
11
- pass: string;
12
- };
13
- dkim: {
14
- domainName: string;
15
- keySelector: string;
16
- privateKey: string;
17
- };
18
- }
19
- declare class BaseMail {
20
- poolConfig: object;
21
- user: User;
22
- mailOptions: mailOptions;
23
- smtpConfig: smtpConfig;
24
- constructor(user: User, mailOptions: mailOptions);
25
- send(): Promise<void>;
26
- }
27
- export declare class NewAccessMail extends BaseMail {
28
- constructor(user: User, location: string);
29
- }
30
- export declare class WelcomeMail extends BaseMail {
31
- constructor(user: User, otp: string);
32
- }
33
- export declare class ChangePasswordMail extends BaseMail {
34
- constructor(user: User, link: string);
35
- }
36
- export {};
1
+ import { User } from '../../Entities/User';
2
+ interface mailOptions {
3
+ subject: string;
4
+ html: string;
5
+ text: string;
6
+ }
7
+ interface smtpConfig {
8
+ host: string;
9
+ auth: {
10
+ user: string;
11
+ pass: string;
12
+ };
13
+ dkim: {
14
+ domainName: string;
15
+ keySelector: string;
16
+ privateKey: string;
17
+ };
18
+ }
19
+ declare class BaseMail {
20
+ poolConfig: object;
21
+ user: User;
22
+ mailOptions: mailOptions;
23
+ smtpConfig: smtpConfig;
24
+ constructor(user: User, mailOptions: mailOptions);
25
+ send(): Promise<void>;
26
+ }
27
+ export declare class NewAccessMail extends BaseMail {
28
+ constructor(user: User, location: string);
29
+ }
30
+ export declare class WelcomeMail extends BaseMail {
31
+ constructor(user: User, otp: string);
32
+ }
33
+ export declare class ChangePasswordMail extends BaseMail {
34
+ constructor(user: User, link: string);
35
+ }
36
+ export {};
@@ -1,101 +1,101 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- var __importDefault = (this && this.__importDefault) || function (mod) {
12
- return (mod && mod.__esModule) ? mod : { "default": mod };
13
- };
14
- Object.defineProperty(exports, "__esModule", { value: true });
15
- exports.ChangePasswordMail = exports.WelcomeMail = exports.NewAccessMail = void 0;
16
- const nodemailer_1 = __importDefault(require("nodemailer"));
17
- const default_1 = __importDefault(require("./templates/default"));
18
- const handlebars_1 = __importDefault(require("handlebars"));
19
- class BaseMail {
20
- constructor(user, mailOptions) {
21
- this.user = user;
22
- this.mailOptions = mailOptions;
23
- this.smtpConfig = JSON.parse(process.env.PROTONFILE_AUTH_SMTP_CONFIG || '');
24
- this.poolConfig = {
25
- pool: true,
26
- host: this.smtpConfig.host,
27
- secure: true,
28
- auth: this.smtpConfig.auth,
29
- tls: {
30
- rejectUnauthorized: false,
31
- },
32
- dkim: Object.assign(Object.assign({}, this.smtpConfig.dkim), { cacheDir: '/tmp', cacheTreshold: 100 * 1024 }),
33
- };
34
- }
35
- send() {
36
- return __awaiter(this, void 0, void 0, function* () {
37
- const transporter = nodemailer_1.default.createTransport(this.poolConfig);
38
- transporter.sendMail({
39
- from: this.smtpConfig.auth.user,
40
- to: this.user.email,
41
- subject: this.mailOptions.subject,
42
- html: this.mailOptions.html,
43
- text: this.mailOptions.text,
44
- }, (err, responseStatus) => {
45
- if (err) {
46
- return console.error(err);
47
- }
48
- transporter.close();
49
- });
50
- });
51
- }
52
- }
53
- class NewAccessMail extends BaseMail {
54
- constructor(user, location) {
55
- const _template = handlebars_1.default.compile(default_1.default);
56
- const mailBody = _template({
57
- email: user.email,
58
- body: `A new access to your account was detected from: ${location}`,
59
- });
60
- const mailOptions = {
61
- subject: 'New access to your account',
62
- html: mailBody,
63
- text: mailBody,
64
- };
65
- super(user, mailOptions);
66
- }
67
- }
68
- exports.NewAccessMail = NewAccessMail;
69
- class WelcomeMail extends BaseMail {
70
- constructor(user, otp) {
71
- const _template = handlebars_1.default.compile(default_1.default);
72
- const mailBody = _template({
73
- email: user.email,
74
- body: `Welcome to Protonfile, we hope you enjoy using our service.
75
- Use this OTP code to complete your registration: ${otp}.`,
76
- });
77
- const mailOptions = {
78
- subject: 'Welcome to Protonfile',
79
- html: mailBody,
80
- text: mailBody,
81
- };
82
- super(user, mailOptions);
83
- }
84
- }
85
- exports.WelcomeMail = WelcomeMail;
86
- class ChangePasswordMail extends BaseMail {
87
- constructor(user, link) {
88
- const _template = handlebars_1.default.compile(default_1.default);
89
- const mailBody = _template({
90
- email: user.email,
91
- body: `You just asked for a password reset, here is the link: ${link}<br>If this wasn't you, just ignore this email`,
92
- });
93
- const mailOptions = {
94
- subject: 'Password Reset',
95
- html: mailBody,
96
- text: mailBody,
97
- };
98
- super(user, mailOptions);
99
- }
100
- }
101
- exports.ChangePasswordMail = ChangePasswordMail;
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ var __importDefault = (this && this.__importDefault) || function (mod) {
12
+ return (mod && mod.__esModule) ? mod : { "default": mod };
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.ChangePasswordMail = exports.WelcomeMail = exports.NewAccessMail = void 0;
16
+ const nodemailer_1 = __importDefault(require("nodemailer"));
17
+ const default_1 = __importDefault(require("./templates/default"));
18
+ const handlebars_1 = __importDefault(require("handlebars"));
19
+ class BaseMail {
20
+ constructor(user, mailOptions) {
21
+ this.user = user;
22
+ this.mailOptions = mailOptions;
23
+ this.smtpConfig = JSON.parse(process.env.PROTONFILE_AUTH_SMTP_CONFIG || '');
24
+ this.poolConfig = {
25
+ pool: true,
26
+ host: this.smtpConfig.host,
27
+ secure: true,
28
+ auth: this.smtpConfig.auth,
29
+ tls: {
30
+ rejectUnauthorized: false,
31
+ },
32
+ dkim: Object.assign(Object.assign({}, this.smtpConfig.dkim), { cacheDir: '/tmp', cacheTreshold: 100 * 1024 }),
33
+ };
34
+ }
35
+ send() {
36
+ return __awaiter(this, void 0, void 0, function* () {
37
+ const transporter = nodemailer_1.default.createTransport(this.poolConfig);
38
+ transporter.sendMail({
39
+ from: this.smtpConfig.auth.user,
40
+ to: this.user.email,
41
+ subject: this.mailOptions.subject,
42
+ html: this.mailOptions.html,
43
+ text: this.mailOptions.text,
44
+ }, (err, responseStatus) => {
45
+ if (err) {
46
+ return;
47
+ }
48
+ transporter.close();
49
+ });
50
+ });
51
+ }
52
+ }
53
+ class NewAccessMail extends BaseMail {
54
+ constructor(user, location) {
55
+ const _template = handlebars_1.default.compile(default_1.default);
56
+ const mailBody = _template({
57
+ email: user.email,
58
+ body: `A new access to your account was detected from: ${location}`,
59
+ });
60
+ const mailOptions = {
61
+ subject: 'New access to your account',
62
+ html: mailBody,
63
+ text: mailBody,
64
+ };
65
+ super(user, mailOptions);
66
+ }
67
+ }
68
+ exports.NewAccessMail = NewAccessMail;
69
+ class WelcomeMail extends BaseMail {
70
+ constructor(user, otp) {
71
+ const _template = handlebars_1.default.compile(default_1.default);
72
+ const mailBody = _template({
73
+ email: user.email,
74
+ body: `Welcome to Protonfile, we hope you enjoy using our service.
75
+ Use this OTP code to complete your registration: ${otp}.`,
76
+ });
77
+ const mailOptions = {
78
+ subject: 'Welcome to Protonfile',
79
+ html: mailBody,
80
+ text: mailBody,
81
+ };
82
+ super(user, mailOptions);
83
+ }
84
+ }
85
+ exports.WelcomeMail = WelcomeMail;
86
+ class ChangePasswordMail extends BaseMail {
87
+ constructor(user, link) {
88
+ const _template = handlebars_1.default.compile(default_1.default);
89
+ const mailBody = _template({
90
+ email: user.email,
91
+ body: `You just asked for a password reset, here is the link: ${link}<br>If this wasn't you, just ignore this email`,
92
+ });
93
+ const mailOptions = {
94
+ subject: 'Password Reset',
95
+ html: mailBody,
96
+ text: mailBody,
97
+ };
98
+ super(user, mailOptions);
99
+ }
100
+ }
101
+ exports.ChangePasswordMail = ChangePasswordMail;
@@ -1,2 +1,2 @@
1
- declare const _default: "\n<!DOCTYPE HTML PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional //EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\n<head>\n<!--[if gte mso 9]>\n<xml>\n <o:OfficeDocumentSettings>\n <o:AllowPNG/>\n <o:PixelsPerInch>96</o:PixelsPerInch>\n </o:OfficeDocumentSettings>\n</xml>\n<![endif]-->\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n <meta name=\"x-apple-disable-message-reformatting\">\n <!--[if !mso]><!--><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><!--<![endif]-->\n <title></title>\n \n <style type=\"text/css\">\n table, td { color: #000000; } a { color: #0000ee; text-decoration: underline; }\n@media only screen and (min-width: 520px) {\n .u-row {\n width: 500px !important;\n }\n .u-row .u-col {\n vertical-align: top;\n }\n\n .u-row .u-col-100 {\n width: 500px !important;\n }\n\n}\n\n@media (max-width: 520px) {\n .u-row-container {\n max-width: 100% !important;\n padding-left: 0px !important;\n padding-right: 0px !important;\n }\n .u-row .u-col {\n min-width: 320px !important;\n max-width: 100% !important;\n display: block !important;\n }\n .u-row {\n width: calc(100% - 40px) !important;\n }\n .u-col {\n width: 100% !important;\n }\n .u-col > div {\n margin: 0 auto;\n }\n}\nbody {\n margin: 0;\n padding: 0;\n}\n\ntable,\ntr,\ntd {\n vertical-align: top;\n border-collapse: collapse;\n}\n\np {\n margin: 0;\n}\n\n.ie-container table,\n.mso-container table {\n table-layout: fixed;\n}\n\n* {\n line-height: inherit;\n}\n\na[x-apple-data-detectors='true'] {\n color: inherit !important;\n text-decoration: none !important;\n}\n\n</style>\n \n \n\n</head>\n\n<body class=\"clean-body u_body\" style=\"margin: 0;padding: 0;-webkit-text-size-adjust: 100%;background-color: #ffffff;color: #000000\">\n <!--[if IE]><div class=\"ie-container\"><![endif]-->\n <!--[if mso]><div class=\"mso-container\"><![endif]-->\n <table style=\"border-collapse: collapse;table-layout: fixed;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;vertical-align: top;min-width: 320px;Margin: 0 auto;background-color: #ffffff;width:100%\" cellpadding=\"0\" cellspacing=\"0\">\n <tbody>\n <tr style=\"vertical-align: top\">\n <td style=\"word-break: break-word;border-collapse: collapse !important;vertical-align: top\">\n <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td align=\"center\" style=\"background-color: #ffffff;\"><![endif]-->\n \n\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\n <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 500px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;\">\n <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\n <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:500px;\"><tr style=\"background-color: transparent;\"><![endif]-->\n \n<!--[if (mso)|(IE)]><td align=\"center\" width=\"500\" style=\"width: 500px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 500px;display: table-cell;vertical-align: top;\">\n <div style=\"width: 100% !important;\">\n <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\n \n<table style=\"font-family:arial,helvetica,sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\n <tbody>\n <tr>\n <td style=\"overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:arial,helvetica,sans-serif;\" align=\"left\">\n \n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\n <tr>\n <td style=\"padding-right: 0px;padding-left: 0px;\" align=\"left\">\n \n <img align=\"left\" border=\"0\" src=\"https://www.jz-software.com/archive/protonfile-logo.png\" alt=\"\" title=\"\" style=\"outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;clear: both;display: inline-block !important;border: none;height: auto;float: none;width: 100%;max-width: 100px;\" width=\"100\"/>\n \n </td>\n </tr>\n</table>\n\n </td>\n </tr>\n </tbody>\n</table>\n\n <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\n </div>\n</div>\n<!--[if (mso)|(IE)]></td><![endif]-->\n <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\n </div>\n </div>\n</div>\n\n\n\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\n <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 500px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;\">\n <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\n <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:500px;\"><tr style=\"background-color: transparent;\"><![endif]-->\n \n<!--[if (mso)|(IE)]><td align=\"center\" width=\"500\" style=\"width: 500px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;\" valign=\"top\"><![endif]-->\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 500px;display: table-cell;vertical-align: top;\">\n <div style=\"width: 100% !important;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;\">\n <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;\"><!--<![endif]-->\n \n<table style=\"font-family:arial,helvetica,sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\n <tbody>\n <tr>\n <td style=\"overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:arial,helvetica,sans-serif;\" align=\"left\">\n \n <table height=\"0px\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;table-layout: fixed;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;vertical-align: top;border-top: 1px solid #BBBBBB;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%\">\n <tbody>\n <tr style=\"vertical-align: top\">\n <td style=\"word-break: break-word;border-collapse: collapse !important;vertical-align: top;font-size: 0px;line-height: 0px;mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%\">\n <span>&#160;</span>\n </td>\n </tr>\n </tbody>\n </table>\n\n </td>\n </tr>\n </tbody>\n</table>\n\n <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\n </div>\n</div>\n<!--[if (mso)|(IE)]></td><![endif]-->\n <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\n </div>\n </div>\n</div>\n\n\n\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\n <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 500px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;\">\n <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\n <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:500px;\"><tr style=\"background-color: transparent;\"><![endif]-->\n \n<!--[if (mso)|(IE)]><td align=\"center\" width=\"500\" style=\"width: 500px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;\" valign=\"top\"><![endif]-->\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 500px;display: table-cell;vertical-align: top;\">\n <div style=\"width: 100% !important;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;\">\n <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;\"><!--<![endif]-->\n \n<table style=\"font-family:arial,helvetica,sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\n <tbody>\n <tr>\n <td style=\"overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:arial,helvetica,sans-serif;\" align=\"left\">\n \n <div style=\"line-height: 140%; text-align: left; word-wrap: break-word;\">\n <p style=\"font-size: 14px; line-height: 140%;\">Dear <a rel=\"noopener\" href=\"mailto:{{email}}\" target=\"_blank\">{{email}}</a>,</p>\n<p style=\"font-size: 14px; line-height: 140%;\">&nbsp;</p>\n<p style=\"font-size: 14px; line-height: 140%;\">{{body}}</p>\n<p style=\"font-size: 14px; line-height: 140%;\">&nbsp;</p>\n<p style=\"font-size: 14px; line-height: 140%;\">For any questions email us at info@jz-software.com</p>\n </div>\n\n </td>\n </tr>\n </tbody>\n</table>\n\n<table style=\"font-family:arial,helvetica,sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\n <tbody>\n <tr>\n <td style=\"overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:arial,helvetica,sans-serif;\" align=\"left\">\n \n <table height=\"0px\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;table-layout: fixed;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;vertical-align: top;border-top: 1px solid #BBBBBB;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%\">\n <tbody>\n <tr style=\"vertical-align: top\">\n <td style=\"word-break: break-word;border-collapse: collapse !important;vertical-align: top;font-size: 0px;line-height: 0px;mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%\">\n <span>&#160;</span>\n </td>\n </tr>\n </tbody>\n </table>\n\n </td>\n </tr>\n </tbody>\n</table>\n\n<table style=\"font-family:arial,helvetica,sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\n <tbody>\n <tr>\n <td style=\"overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:arial,helvetica,sans-serif;\" align=\"left\">\n \n <div style=\"line-height: 140%; text-align: left; word-wrap: break-word;\">\n <p style=\"font-size: 14px; line-height: 140%;\">JZ-Software</p>\n </div>\n\n </td>\n </tr>\n </tbody>\n</table>\n\n <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\n </div>\n</div>\n<!--[if (mso)|(IE)]></td><![endif]-->\n <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\n </div>\n </div>\n</div>\n\n\n <!--[if (mso)|(IE)]></td></tr></table><![endif]-->\n </td>\n </tr>\n </tbody>\n </table>\n <!--[if mso]></div><![endif]-->\n <!--[if IE]></div><![endif]-->\n</body>\n\n</html>\n";
2
- export default _default;
1
+ declare const _default: "\n<!DOCTYPE HTML PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional //EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\n<head>\n<!--[if gte mso 9]>\n<xml>\n <o:OfficeDocumentSettings>\n <o:AllowPNG/>\n <o:PixelsPerInch>96</o:PixelsPerInch>\n </o:OfficeDocumentSettings>\n</xml>\n<![endif]-->\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n <meta name=\"x-apple-disable-message-reformatting\">\n <!--[if !mso]><!--><meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"><!--<![endif]-->\n <title></title>\n \n <style type=\"text/css\">\n table, td { color: #000000; } a { color: #0000ee; text-decoration: underline; }\n@media only screen and (min-width: 520px) {\n .u-row {\n width: 500px !important;\n }\n .u-row .u-col {\n vertical-align: top;\n }\n\n .u-row .u-col-100 {\n width: 500px !important;\n }\n\n}\n\n@media (max-width: 520px) {\n .u-row-container {\n max-width: 100% !important;\n padding-left: 0px !important;\n padding-right: 0px !important;\n }\n .u-row .u-col {\n min-width: 320px !important;\n max-width: 100% !important;\n display: block !important;\n }\n .u-row {\n width: calc(100% - 40px) !important;\n }\n .u-col {\n width: 100% !important;\n }\n .u-col > div {\n margin: 0 auto;\n }\n}\nbody {\n margin: 0;\n padding: 0;\n}\n\ntable,\ntr,\ntd {\n vertical-align: top;\n border-collapse: collapse;\n}\n\np {\n margin: 0;\n}\n\n.ie-container table,\n.mso-container table {\n table-layout: fixed;\n}\n\n* {\n line-height: inherit;\n}\n\na[x-apple-data-detectors='true'] {\n color: inherit !important;\n text-decoration: none !important;\n}\n\n</style>\n \n \n\n</head>\n\n<body class=\"clean-body u_body\" style=\"margin: 0;padding: 0;-webkit-text-size-adjust: 100%;background-color: #ffffff;color: #000000\">\n <!--[if IE]><div class=\"ie-container\"><![endif]-->\n <!--[if mso]><div class=\"mso-container\"><![endif]-->\n <table style=\"border-collapse: collapse;table-layout: fixed;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;vertical-align: top;min-width: 320px;Margin: 0 auto;background-color: #ffffff;width:100%\" cellpadding=\"0\" cellspacing=\"0\">\n <tbody>\n <tr style=\"vertical-align: top\">\n <td style=\"word-break: break-word;border-collapse: collapse !important;vertical-align: top\">\n <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td align=\"center\" style=\"background-color: #ffffff;\"><![endif]-->\n \n\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\n <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 500px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;\">\n <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\n <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:500px;\"><tr style=\"background-color: transparent;\"><![endif]-->\n \n<!--[if (mso)|(IE)]><td align=\"center\" width=\"500\" style=\"width: 500px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\" valign=\"top\"><![endif]-->\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 500px;display: table-cell;vertical-align: top;\">\n <div style=\"width: 100% !important;\">\n <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;\"><!--<![endif]-->\n \n<table style=\"font-family:arial,helvetica,sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\n <tbody>\n <tr>\n <td style=\"overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:arial,helvetica,sans-serif;\" align=\"left\">\n \n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\n <tr>\n <td style=\"padding-right: 0px;padding-left: 0px;\" align=\"left\">\n \n <img align=\"left\" border=\"0\" src=\"https://www.jz-software.com/archive/protonfile-logo.png\" alt=\"\" title=\"\" style=\"outline: none;text-decoration: none;-ms-interpolation-mode: bicubic;clear: both;display: inline-block !important;border: none;height: auto;float: none;width: 100%;max-width: 100px;\" width=\"100\"/>\n \n </td>\n </tr>\n</table>\n\n </td>\n </tr>\n </tbody>\n</table>\n\n <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\n </div>\n</div>\n<!--[if (mso)|(IE)]></td><![endif]-->\n <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\n </div>\n </div>\n</div>\n\n\n\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\n <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 500px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;\">\n <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\n <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:500px;\"><tr style=\"background-color: transparent;\"><![endif]-->\n \n<!--[if (mso)|(IE)]><td align=\"center\" width=\"500\" style=\"width: 500px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;\" valign=\"top\"><![endif]-->\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 500px;display: table-cell;vertical-align: top;\">\n <div style=\"width: 100% !important;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;\">\n <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;\"><!--<![endif]-->\n \n<table style=\"font-family:arial,helvetica,sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\n <tbody>\n <tr>\n <td style=\"overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:arial,helvetica,sans-serif;\" align=\"left\">\n \n <table height=\"0px\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;table-layout: fixed;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;vertical-align: top;border-top: 1px solid #BBBBBB;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%\">\n <tbody>\n <tr style=\"vertical-align: top\">\n <td style=\"word-break: break-word;border-collapse: collapse !important;vertical-align: top;font-size: 0px;line-height: 0px;mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%\">\n <span>&#160;</span>\n </td>\n </tr>\n </tbody>\n </table>\n\n </td>\n </tr>\n </tbody>\n</table>\n\n <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\n </div>\n</div>\n<!--[if (mso)|(IE)]></td><![endif]-->\n <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\n </div>\n </div>\n</div>\n\n\n\n<div class=\"u-row-container\" style=\"padding: 0px;background-color: transparent\">\n <div class=\"u-row\" style=\"Margin: 0 auto;min-width: 320px;max-width: 500px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;background-color: transparent;\">\n <div style=\"border-collapse: collapse;display: table;width: 100%;background-color: transparent;\">\n <!--[if (mso)|(IE)]><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td style=\"padding: 0px;background-color: transparent;\" align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"width:500px;\"><tr style=\"background-color: transparent;\"><![endif]-->\n \n<!--[if (mso)|(IE)]><td align=\"center\" width=\"500\" style=\"width: 500px;padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;\" valign=\"top\"><![endif]-->\n<div class=\"u-col u-col-100\" style=\"max-width: 320px;min-width: 500px;display: table-cell;vertical-align: top;\">\n <div style=\"width: 100% !important;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;\">\n <!--[if (!mso)&(!IE)]><!--><div style=\"padding: 0px;border-top: 0px solid transparent;border-left: 0px solid transparent;border-right: 0px solid transparent;border-bottom: 0px solid transparent;border-radius: 0px;-webkit-border-radius: 0px; -moz-border-radius: 0px;\"><!--<![endif]-->\n \n<table style=\"font-family:arial,helvetica,sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\n <tbody>\n <tr>\n <td style=\"overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:arial,helvetica,sans-serif;\" align=\"left\">\n \n <div style=\"line-height: 140%; text-align: left; word-wrap: break-word;\">\n <p style=\"font-size: 14px; line-height: 140%;\">Dear <a rel=\"noopener\" href=\"mailto:{{email}}\" target=\"_blank\">{{email}}</a>,</p>\n<p style=\"font-size: 14px; line-height: 140%;\">&nbsp;</p>\n<p style=\"font-size: 14px; line-height: 140%;\">{{body}}</p>\n<p style=\"font-size: 14px; line-height: 140%;\">&nbsp;</p>\n<p style=\"font-size: 14px; line-height: 140%;\">For any questions email us at info@jz-software.com</p>\n </div>\n\n </td>\n </tr>\n </tbody>\n</table>\n\n<table style=\"font-family:arial,helvetica,sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\n <tbody>\n <tr>\n <td style=\"overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:arial,helvetica,sans-serif;\" align=\"left\">\n \n <table height=\"0px\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-collapse: collapse;table-layout: fixed;border-spacing: 0;mso-table-lspace: 0pt;mso-table-rspace: 0pt;vertical-align: top;border-top: 1px solid #BBBBBB;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%\">\n <tbody>\n <tr style=\"vertical-align: top\">\n <td style=\"word-break: break-word;border-collapse: collapse !important;vertical-align: top;font-size: 0px;line-height: 0px;mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%\">\n <span>&#160;</span>\n </td>\n </tr>\n </tbody>\n </table>\n\n </td>\n </tr>\n </tbody>\n</table>\n\n<table style=\"font-family:arial,helvetica,sans-serif;\" role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\n <tbody>\n <tr>\n <td style=\"overflow-wrap:break-word;word-break:break-word;padding:10px;font-family:arial,helvetica,sans-serif;\" align=\"left\">\n \n <div style=\"line-height: 140%; text-align: left; word-wrap: break-word;\">\n <p style=\"font-size: 14px; line-height: 140%;\">JZ-Software</p>\n </div>\n\n </td>\n </tr>\n </tbody>\n</table>\n\n <!--[if (!mso)&(!IE)]><!--></div><!--<![endif]-->\n </div>\n</div>\n<!--[if (mso)|(IE)]></td><![endif]-->\n <!--[if (mso)|(IE)]></tr></table></td></tr></table><![endif]-->\n </div>\n </div>\n</div>\n\n\n <!--[if (mso)|(IE)]></td></tr></table><![endif]-->\n </td>\n </tr>\n </tbody>\n </table>\n <!--[if mso]></div><![endif]-->\n <!--[if IE]></div><![endif]-->\n</body>\n\n</html>\n";
2
+ export default _default;