Hi @Darryl Buckby
It seems that you're encountering SMTP delivery problems on port 587 after upgrading your Azure App Service instance.
1.Make sure your app's SMTP client is set to use StartTLS (EnableSsl = true), which is the correct method for port 587.
2.Check your web app logs or Application Insights for any SMTP exceptions or timeout errors. This will help pinpoint where the failure occurs.
3.Ensure your App Service instance can connect to the SMTP host on port 587.
4.After upgrading, your App Service may now use different outbound IPs. Make sure these IPs are allowed by your SMTP provider.
5.Use a tool like Telnet to test the connection to your SMTP server. You can do this by running telnet your.smtp.server 587 from a command line on a local machine or an Azure VM in the same virtual network to see if it connects.
https://learn.microsoft.com/en-us/azure/virtual-network/troubleshoot-outbound-smtp-connectivity
Please accept as "Yes" if the answer provided is useful , so that you can help others in the community looking for remediation for similar issues.