Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions server/BudgetBoard.WebAPI/Utils/EmailSender.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@ public async Task SendEmailAsync(string email, string subject, string htmlMessag
}

var senderPassword = Configuration.GetValue<string>("EMAIL_SENDER_PASSWORD");
if (string.IsNullOrEmpty(senderPassword))
{
throw new ArgumentNullException(nameof(senderPassword));
}

var smtpHost = Configuration.GetValue<string>("EMAIL_SMTP_HOST");
if (string.IsNullOrEmpty(smtpHost))
Expand Down
Loading