1
0
mirror of https://github.com/bitwarden/server synced 2025-12-17 16:53:23 +00:00

markdown mail service when self hosted

This commit is contained in:
Kyle Spearrin
2017-08-16 10:59:13 -04:00
parent 8af74bd0e4
commit 50a522bbd7
42 changed files with 342 additions and 35 deletions

View File

@@ -88,7 +88,7 @@ namespace Bit.Core.Services
AddSubstitution(message, "{{fromEmail}}", fromEmail);
AddSubstitution(message, "{{toEmail}}", toEmail);
AddCategories(message, new List<string> { AdministrativeCategoryName, "Change Email Alrady Exists" });
AddCategories(message, new List<string> { AdministrativeCategoryName, "Change Email Already Exists" });
await _mailDeliveryService.SendEmailAsync(message);
}