I need to be able to send emails from a stored procedure in Azure SQL which doesn't support typical SQL mail and cannot send mail directly. I don't want to use the hack that has been identified in an Italian post by Polizzi.
I've seen references to Logic Apps, worker roles, and connectors but nothing seems to fit what I want to do... or I don't understand how they fit my purpose. In the stored procedure, I will pull the email address and body from the database depending on different types of events: registration, new assignments, notifications, etc. and send them the appropriate email.
Does anyone have an example of a Azure SQL stored procedure sending email through SendGrid?