skip to Main Content

How to get Email Message ID from Azure email service?

I'm trying to send email using azure email communication Python SDK poller = self.email_client.begin_send( message=payload, ) time_elapsed = 0 while not poller.done(): logger.info("Email send poller status: " + poller.status()) poller.wait(POLLER_WAIT_TIME) time_elapsed += POLLER_WAIT_TIME if time_elapsed > 18 * POLLER_WAIT_TIME: raise…

VIEW QUESTION

ERROR: () The provided value for encryptionWithCmk.enforcement were invalid while trying to update azure search service

I am trying to update the network rules of a search service using the following powershell command:az search service update --name "$(azure_search_service)" --resource-group "$(resource_group)" --ip-rules $ipsToBeAdded but getting the error "ERROR: () The provided value for encryptionWithCmk.enforcement were invalid. Parameter…

VIEW QUESTION
Back To Top
Search