I have successfully sent some messages to Azure queue storage.
Here's a code of how I send messages to my queue storage:
private void QueueEmail(Email email)
{
QueueClient client = GetQueueStorage("invoice-email");
var message = JsonConvert.SerializeObject(email);
System.Diagnostics.Debug.WriteLine(message);
client.SendMessageAsync(message).Wait();
}
The errors occur when I try to run the azure function to process the queue, the execution failed. Below are the error messages.

Does anyone know how to solve this problem?
