1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 00:22:50 -05:00

Uppercase Bitwarden

This commit is contained in:
Kyle Spearrin
2018-02-27 14:16:19 -05:00
parent e9d0f76795
commit 555e478ec3
36 changed files with 78 additions and 78 deletions

View File

@ -20,7 +20,7 @@ namespace Bit.Function
const string DesktopWindowsAppxFileName = "Bitwarden-{0}.appx";
const string DesktopWindowsAppx32FileName = "Bitwarden-{0}-ia32.appx";
const string DesktopWindowsStoreUrl = "https://www.microsoft.com/en-us/store/b/home";
const string DesktopWindowsChocoUrl = "https://chocolatey.org/search?q=bitwarden";
const string DesktopWindowsChocoUrl = "https://chocolatey.org/packages/bitwarden";
const string DesktopMacOsDmgFileName = "Bitwarden-{0}.dmg";
const string DesktopMacOsPkgFileName = "Bitwarden-{0}.pkg";

View File

@ -83,7 +83,7 @@ namespace Bit.Function
status = 2,
priority = 2,
source = 1,
subject = "bitwarden.com Website Contact",
subject = "Bitwarden.com Website Contact",
description = FormatMessage(message)
});
@ -103,7 +103,7 @@ namespace Bit.Function
var fromAddress = new MailAddress(email, name, Encoding.UTF8);
var mailMessage = new MailMessage(fromAddress, new MailAddress("bitwardencomsupport@bitwarden.freshdesk.com"))
{
Subject = "bitwarden.com Website Contact",
Subject = "Bitwarden.com Website Contact",
Body = FormatMessage(message),
IsBodyHtml = true
};