SendGrid delivery async not working on Azure WebJob

171 Views Asked by At

I've developed and application console to deliver email. This console application is performed by an Azure WebJob. I'm using DeliveryAsync method with Wait:

transportWeb.DeliverAsync(sendGridMessage).Wait();

But messages are not being delivered, they are not even shown in SendGrid dashboard. When I run the job in development environment (local) sending email works fine.

No exceptions are thrown, and I'm pretty sure that the problem is that the async task it's not completing.

I want to complete this without using Web Jobs SDK Extensions, is there any different approach?

Is there somethig else that must be configured on Azure?

1

There are 1 best solutions below

0
On

Try this in your webjob function. It will display a string of the SendGrid response in your webjob dashboard "Toggle Output" window and you can diagnose the issue.

var response = transportWeb.DeliverAsync(sendGridMessage);
Console.WriteLine(response.Result);