tags:

views:

92

answers:

4

What is the best way to send email from sql server 2008 (script).

Any sample or online links please.

A: 

I think this is something you might try googling:

http://classicasp.aspfaq.com/email/how-do-i-send-e-mail-from-sql-server.html

antik
The advice in the link is obsolete at least.
Remus Rusanu
Yes, this is very old and out of date since SQL Server 2005.
gbn
A: 

Here's a way to do it through the CLR.

Andy West
+3  A: 

Using the Database Mail feature and the built-in procedure sp_send_dbmail.

Remus Rusanu
A: 

I know this has been answered and accepted but I had the same question did a little research and blogged about my solution here

Maybe this will help someone who stumbles across this in the future.

TooFat