Sql-server – Read receipts for emails sent via SQL Server Database Mail

emailemail-serversql server

We use SQL Server Database Mail to send emails from one of our apps. It calls the sp_send_dbmail stored procedure. I've been asked to see if there is a way to add a read receipt to emails sent this way.

The sp doesn't seem to have this option. And the Database Mail Configuration doesn't seem to have settings for it either. So, I'm assuming it's not possible. Is that correct?

Best Answer

SQL Database Mail doesn't have any mechanism for requesting receipts. You'd either have to put some kind of hack in place, like an smtp relay that SQL forwards to that could add one on the fly, or use a different mail library to send your messages.