Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SQLMail appears to work but no message gets sent

Status
Not open for further replies.

evaleah

Programmer
Mar 18, 2003
252
0
0
US
I have the following code in a stored proc:

use master
EXEC xp_startmail
EXEC xp_sendmail
@recipients = 'user@domain.edu',
@subject = 'Accrual Suspension Change',
@message = 'Test'
EXEC xp_stopmail

It gives me the happy messages that it worked, but I never receive the email. Obviously, the address here is not valid but the one I am actually using is.

I have checked that my profile for SQLMail works but sending a test and I receive that just fine.

Any ideas would be most appreciated!

Thanks,
Eva
 
Is there a spam filter that may be picking it off before it reaches your inbox?

Thanks

J. Kusch
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top