when I execute something like:
EXEC master.dbo.xp_sendmail
@recipients = 'xyz@abc.com',
@subject = 'Daily report',
@message = 'New Customers through midnight yesterday'
it just runs and runs and runs...untill I have to cancel it.
I tried using xp_stopmail and xp_startmail and it still gives me the same problem. I know that this was working before. What could have happened?
EXEC master.dbo.xp_sendmail
@recipients = 'xyz@abc.com',
@subject = 'Daily report',
@message = 'New Customers through midnight yesterday'
it just runs and runs and runs...untill I have to cancel it.
I tried using xp_stopmail and xp_startmail and it still gives me the same problem. I know that this was working before. What could have happened?