add content-langauge header to sent emails

This commit is contained in:
Zachary Carter 2014-02-10 14:14:50 -08:00
Родитель 213157df9e
Коммит 696ab882e6
3 изменённых файлов: 7 добавлений и 3 удалений

Просмотреть файл

@ -237,7 +237,7 @@ module.exports = function (fs, path, url, convict) {
supportedLanguages: {
doc: "List of languages this deployment should detect and display localized strings.",
format: Array,
default: ['en', 'en-AU'],
default: ['en', 'en-AU', 'it-CH'],
env: 'I18N_SUPPORTED_LANGUAGES'
},
translationDirectory: {

Просмотреть файл

@ -72,5 +72,7 @@ module.exports = function (config) {
return l10n
}
abideObj.defaultLang = config.defaultLang
return abideObj
}

Просмотреть файл

@ -121,7 +121,8 @@ module.exports = function (config, i18n, log) {
'X-Uid': account.uid.toString('hex'),
'X-Verify-Code': code,
'X-Service-ID': opts.service,
'X-Link': link
'X-Link': link,
'Content-Language': opts.preferredLang || i18n.defaultLang
}
}
return this.send(message)
@ -162,7 +163,8 @@ module.exports = function (config, i18n, log) {
html: template.html(values),
headers: {
'X-Recovery-Code': code,
'X-Link': link
'X-Link': link,
'Content-Language': opts.preferredLang || i18n.defaultLang
}
}
return this.send(message)