File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1- export default ( {
1+ import type { AccountConsolidationEmailTemplate } from '../types/email' ;
2+
3+ /** Returns mjml for an Account Consolidation email */
4+ export const consolidationMailLayout = ( {
25 domain,
36 headingText,
47 greetingText,
@@ -11,7 +14,7 @@ export default ({
1114 resetPasswordText,
1215 noteText,
1316 meta
14- } ) =>
17+ } : AccountConsolidationEmailTemplate ) =>
1518 `
1619<mjml>
1720 <mj-head>
Original file line number Diff line number Diff line change 11import renderMjml from '../utils/renderMjml' ;
22import { mailLayout } from './mailLayout' ;
3- import consolidationMailLayout from './consolidationMailLayout' ;
3+ import { consolidationMailLayout } from './consolidationMailLayout' ;
44
55export const renderAccountConsolidation = ( data ) => {
66 const subject = 'p5.js Web Editor Account Consolidation' ;
You can’t perform that action at this time.
0 commit comments