Skip to content

Commit

Permalink
ASP auth done
Browse files Browse the repository at this point in the history
  • Loading branch information
fergalmoran committed Sep 25, 2023
1 parent 8852af6 commit 5b3282c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions mixyboos-api/Services/Helpers/ARMMailSender.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ public async Task SendEmailAsync(string email, string subject, string htmlMessag

var client = new EmailClient(connectionString);
var operation = await client.SendAsync(
wait: WaitUntil.Completed,
senderAddress: _config["Email:FromAddress"].ToString(),
wait: WaitUntil.Started,
senderAddress: _config["Email:FromAddress"],
recipientAddress: email,
subject: subject,
htmlContent: htmlMessage
Expand Down

0 comments on commit 5b3282c

Please sign in to comment.