I have a stored procedure that sends emails to my customers I told it to use a different from email address, but it didn't what am I missing? It ended up sending it out as the SQL email profile address.
EXEC msdb.dbo.sp_send_dbmail
@recipients = @email
,@blind_copy_recipients = 'emailusers'
,@from_address = 'AdvNotify@server.com'
,@Body = @Body
,@subject = @Subject
,@body_format = 'html'
,@exclude_query_output = 1