Question : @From Address not an accepted Parameter

I need to put in a from address in the EXEC msdb.dbo.sp_send_dbmail instead of using the default profile one.  i don't wnat them to see it come from the profile but somewhere else.  It gives me the follwoing error message.

Msg 8145, Level 16, State 1, Procedure sp_send_dbmail, Line 0
@from_address is not a parameter for procedure sp_send_dbmail.
Code Snippet:
1:
2:
3:
4:
5:
6:
EXEC msdb.dbo.sp_send_dbmail
	@recipients = @receipients,
	@from_address = 'MobTrackerDotNet',
	@body = @body, 
	@subject = 'Test email functionality',
	@profile_name = 'Default'

Answer : @From Address not an accepted Parameter

@from_address isn't a parameter that is accepted in sp_send_dbmail on MS SQL 2005.  It is however a valid parameter on 2008.

http://msdn.microsoft.com/en-us/library/ms190307%28SQL.90%29.aspx
vs
http://msdn.microsoft.com/en-us/library/ms190307.aspx
Random Solutions  
 
programming4us programming4us