2017-06-26 16:48:28 +00:00
import renderMjml from '../utils/renderMjml' ;
import mailLayout from './mailLayout' ;
export const renderResetPassword = ( data ) => {
const subject = 'p5.js Web Editor Password Reset' ;
const templateOptions = {
domain : data . body . domain ,
headingText : 'Reset your password' ,
greetingText : 'Hello,' ,
messageText : 'We received a request to reset the password for your account. To reset your password, click on the button below:' , // eslint-disable-line max-len
link : data . body . link ,
buttonText : 'Reset password' ,
directLinkText : 'Or copy and paste the URL into your browser:' ,
2018-05-05 00:22:39 +00:00
noteText : 'If you did not request this, please ignore this email and your password will remain unchanged. Thanks for using the p5.js Web Editor!' , // eslint-disable-line max-len
2018-05-14 18:53:21 +00:00
meta : {
keywords : 'p5.js, p5.js web editor, web editor, processing, code editor' ,
2018-06-18 21:45:50 +00:00
description : 'A web editor for p5.js, a JavaScript library with the goal'
+ ' of making coding accessible to artists, designers, educators, and beginners.'
2018-05-14 18:53:21 +00:00
}
2017-06-26 16:48:28 +00:00
} ;
// Return MJML string
const template = mailLayout ( templateOptions ) ;
// Render MJML to HTML string
const html = renderMjml ( template ) ;
// Return options to send mail
return Object . assign (
{ } ,
data ,
{ html , subject } ,
) ;
} ;
export const renderEmailConfirmation = ( data ) => {
const subject = 'p5.js Email Verification' ;
const templateOptions = {
domain : data . body . domain ,
headingText : 'Email Verification' ,
greetingText : 'Hello,' ,
messageText : 'To verify your email, click on the button below:' ,
link : data . body . link ,
buttonText : 'Verify Email' ,
directLinkText : 'Or copy and paste the URL into your browser:' ,
noteText : 'This link is only valid for the next 24 hours. Thanks for using the p5.js Web Editor!' ,
2018-05-14 18:53:21 +00:00
meta : {
keywords : 'p5.js, p5.js web editor, web editor, processing, code editor' ,
2018-06-18 21:45:50 +00:00
description : 'A web editor for p5.js, a JavaScript library with the goal'
+ ' of making coding accessible to artists, designers, educators, and beginners.'
2018-05-14 18:53:21 +00:00
}
2017-06-26 16:48:28 +00:00
} ;
// Return MJML string
const template = mailLayout ( templateOptions ) ;
// Render MJML to HTML string
const html = renderMjml ( template ) ;
// Return options to send mail
return Object . assign (
{ } ,
data ,
{ html , subject } ,
) ;
} ;