For our environment test we need to configure sp_send_dbmail to send emails only to certain recipients. Let's say a stored procedure executes the following code:
EXEC msdb.dbo.sp_send_dbmail
@recipients='developer@myorganization.com'; 'realuser@myorganization.com',
@body = @myBody,
@subject = @mySubject,
@profile_name =@myProfileName
I need the email to be sent only to developer@myorganization.com, and not to realuser@myorganization.com. Is there a way that i can configure this? Changing realusers email address won't do it for me.
