1
|
|
|
'use strict' |
2
|
|
|
|
3
|
|
|
module.exports = { |
4
|
|
|
mailer: { |
5
|
|
|
account_confirmation: { |
6
|
|
|
subject: 'Welcome to Restify Devise', |
7
|
|
|
title: 'Restify Devise | Account confirmation', |
8
|
|
|
header: 'Welcome to Restify Devise!', |
9
|
|
|
paragraph1: 'Confirm your email address by clicking the link below.', |
10
|
|
|
paragraph2: 'We may need to send you important information about our services and it is imperative to have a valid email address.', |
11
|
|
|
action: 'Confirm email address' |
12
|
|
|
}, |
13
|
|
|
password_recovery: { |
14
|
|
|
subject: 'Password recovery confirmation', |
15
|
|
|
title: 'Restify Devise | Password recovery', |
16
|
|
|
header: 'We need to confirm your request.', |
17
|
|
|
paragraph1: 'Click the link below to access the password change.', |
18
|
|
|
paragraph2: 'We received a password recovery request from Restify Devise.', |
19
|
|
|
paragraph3: 'If you did not request this account recovery, please ignore this email.', |
20
|
|
|
action: 'Change password' |
21
|
|
|
}, |
22
|
|
|
account_recovery: { |
23
|
|
|
subject: 'Your account has been blocked', |
24
|
|
|
title: 'Restify Devise | Account recovery', |
25
|
|
|
header: 'Your account has been blocked!', |
26
|
|
|
paragraph1: 'Click the link below to unlock it.', |
27
|
|
|
paragraph2: 'We have detected several unsuccessful attempts to gain access to your account for this reason we resolve to block it.', |
28
|
|
|
paragraph3: 'Remember, you can change your password at any time :)', |
29
|
|
|
action: 'Unblock my account' |
30
|
|
|
}, |
31
|
|
|
sincerely: 'Sincerely', |
32
|
|
|
team: '— Restify Devise Team' |
33
|
|
|
} |
34
|
|
|
} |
35
|
|
|
|