mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
110 lines
3.5 KiB
CoffeeScript
110 lines
3.5 KiB
CoffeeScript
_ = require('underscore')
|
|
|
|
PersonalEmailLayout = require("./Layouts/PersonalEmailLayout")
|
|
NotificationEmailLayout = require("./Layouts/NotificationEmailLayout")
|
|
settings = require("settings-sharelatex")
|
|
|
|
templates = {}
|
|
|
|
templates.welcome =
|
|
subject: _.template "Welcome to ShareLaTeX"
|
|
layout: PersonalEmailLayout
|
|
type:"lifecycle"
|
|
compiledTemplate: _.template '''
|
|
<p>Hi <%= first_name %>,</p>
|
|
|
|
<p>Thanks for signing up to ShareLaTeX! If you ever get lost, you can log in again <a href="<%= siteUrl %>/login">here</a> with the email address "<%= to %>".</p>
|
|
|
|
<p>If you're new to LaTeX, take a look at our <a href="<%= siteUrl %>/learn">Help Guides</a> and <a href="<%= siteUrl %>/templates">Templates</a>.</p>
|
|
|
|
<p>
|
|
Regards, <br>
|
|
Henry <br>
|
|
ShareLaTeX Co-founder
|
|
</p>
|
|
|
|
<p>PS. We love talking to our users about ShareLaTeX. Reply to this email to get in touch us with us directly, whatever the reason. Questions, comments, problems, suggestions, all welcome!<p>
|
|
'''
|
|
|
|
templates.canceledSubscription =
|
|
subject: _.template "ShareLaTeX thoughts"
|
|
layout: PersonalEmailLayout
|
|
type:"lifecycle"
|
|
compiledTemplate: _.template '''
|
|
<p>Hi <%= first_name %>,</p>
|
|
|
|
<p>I'm sorry to see you cancelled your ShareLaTeX premium account. Would you mind giving me some advice on what the site is lacking at the moment? Feedback from our users is the only way we can improve ShareLaTeX.</p>
|
|
|
|
<p>Thank you in advance.</p>
|
|
|
|
<p>
|
|
Henry <br>
|
|
ShareLaTeX Co-founder
|
|
</p>
|
|
'''
|
|
|
|
templates.passwordResetRequested =
|
|
subject: _.template "Password Reset - ShareLatex.com"
|
|
layout: NotificationEmailLayout
|
|
type:"notification"
|
|
compiledTemplate: _.template '''
|
|
<h1 class="h1">Password Reset</h1>
|
|
<p>
|
|
We got a request to reset your ShareLaTeX password.
|
|
<p>
|
|
<center>
|
|
<div style="width:200px;background-color:#a93629;border:1px solid #e24b3b;border-radius:3px;padding:15px; margin:12.5px;">
|
|
<div style="padding-right:10px;padding-left:10px">
|
|
<a href="<%= setNewPasswordUrl %>" style="text-decoration:none" target="_blank">
|
|
<span style= "font-size:16px;font-family:Arial;font-weight:bold;color:#fff;white-space:nowrap;display:block; text-align:center">
|
|
Reset password
|
|
</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</center>
|
|
|
|
If you ignore this message, your password won't be changed.
|
|
<p>
|
|
If you didn't request a password reset, let us know.
|
|
|
|
</p>
|
|
<p>Thank you</p>
|
|
<p> <a href="<%= siteUrl %>"> ShareLatex.com </a></p>
|
|
'''
|
|
|
|
templates.projectSharedWithYou =
|
|
subject: _.template "<%= owner.email %> wants to share <%= project.name %> with you"
|
|
layout: NotificationEmailLayout
|
|
type:"notification"
|
|
compiledTemplate: _.template '''
|
|
<p>Hi, <%= owner.email %> wants to share <a href="<%= project.url %>">'<%= project.name %>'</a> with you</p>
|
|
<p> </p>
|
|
<center>
|
|
<div style="width:200px;background-color:#a93629;border:1px solid #e24b3b;border-radius:3px;padding:15px; margin:12.5px;">
|
|
<div style="padding-right:10px;padding-left:10px">
|
|
<a href="<%= project.url %>" style="text-decoration:none" target="_blank">
|
|
<span style= "font-size:16px;font-family:Helvetica,Arial;font-weight:400;color:#fff;white-space:nowrap;display:block; text-align:center">
|
|
View Project
|
|
</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</center>
|
|
<p> Thank you</p>
|
|
<p> <a href="<%= siteUrl %>"> ShareLatex.com </a></p>
|
|
|
|
'''
|
|
|
|
module.exports =
|
|
|
|
buildEmail: (templateName, opts)->
|
|
template = templates[templateName]
|
|
opts.siteUrl = settings.siteUrl
|
|
opts.body = template.compiledTemplate(opts)
|
|
return {
|
|
subject : template.subject(opts)
|
|
html: template.layout(opts)
|
|
type:template.type
|
|
}
|
|
|