diff --git a/mixyboos-api/Migrations/20230921174203_Initial.Designer.cs b/mixyboos-api/Migrations/20230923145207_Initial.Designer.cs similarity index 99% rename from mixyboos-api/Migrations/20230921174203_Initial.Designer.cs rename to mixyboos-api/Migrations/20230923145207_Initial.Designer.cs index aa7ebb5..3f09bc9 100644 --- a/mixyboos-api/Migrations/20230921174203_Initial.Designer.cs +++ b/mixyboos-api/Migrations/20230923145207_Initial.Designer.cs @@ -12,7 +12,7 @@ namespace MixyBoos.Api.Migrations { [DbContext(typeof(MixyBoosContext))] - [Migration("20230921174203_Initial")] + [Migration("20230923145207_Initial")] partial class Initial { /// diff --git a/mixyboos-api/Migrations/20230921174203_Initial.cs b/mixyboos-api/Migrations/20230923145207_Initial.cs similarity index 100% rename from mixyboos-api/Migrations/20230921174203_Initial.cs rename to mixyboos-api/Migrations/20230923145207_Initial.cs diff --git a/mixyboos-api/Services/Helpers/ARMMailSender.cs b/mixyboos-api/Services/Helpers/ARMMailSender.cs index be60c2a..3e0fbfc 100644 --- a/mixyboos-api/Services/Helpers/ARMMailSender.cs +++ b/mixyboos-api/Services/Helpers/ARMMailSender.cs @@ -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