mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
New email layout for "testEmail"
This commit is contained in:
parent
707838baa4
commit
8922c9dbf5
1 changed files with 16 additions and 7 deletions
|
@ -147,20 +147,29 @@ Thank You
|
||||||
gmailGoToAction: null
|
gmailGoToAction: null
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
templates.testEmail =
|
templates.testEmail =
|
||||||
subject: _.template "Test Email from ShareLaTeX"
|
subject: _.template "A Test Email from ShareLaTeX"
|
||||||
layout: PersonalEmailLayout
|
layout: BaseWithHeaderEmailLayout
|
||||||
type: 'notification'
|
type:"notification"
|
||||||
plainTextTemplate: _.template """
|
plainTextTemplate: _.template """
|
||||||
Hi,
|
Hi,
|
||||||
|
|
||||||
This is a test email, from ShareLaTeX.
|
This is a test email sent from ShareLaTeX.
|
||||||
|
|
||||||
#{settings.appName} - <%= siteUrl %>
|
#{settings.appName} - <%= siteUrl %>
|
||||||
"""
|
"""
|
||||||
compiledTemplate: _.template """
|
compiledTemplate: (opts) ->
|
||||||
<p>This is a test email, from ShareLaTeX.</p>
|
SingleCTAEmailBody({
|
||||||
"""
|
title: "A Test Email from ShareLaTeX"
|
||||||
|
greeting: "Hi,"
|
||||||
|
message: "This is a test email sent from ShareLaTeX"
|
||||||
|
secondaryMessage: null
|
||||||
|
ctaText: "Open ShareLaTeX"
|
||||||
|
ctaURL: "/"
|
||||||
|
gmailGoToAction: null
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
module.exports =
|
module.exports =
|
||||||
templates: templates
|
templates: templates
|
||||||
|
|
Loading…
Reference in a new issue