src/helpers/i18n/locales/en-US/mailer.js   A
last analyzed

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 34
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 0
wmc 0
c 1
b 0
f 0
nc 1
mnd 0
bc 0
fnc 0
dl 0
loc 34
rs 10
bpm 0
cpm 0
noi 0
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