I have a database view that gathers about 10 member names a day, based on when they joined.
I want to setup something where these people will automatically be emailed an html page
i have made.
and repeat this daily, at first i was going to build an asp.net page
where i would pull the view and loop through the email addresses, but i wanted to see if it was possible to do this soley in sql server 2005
Could i use a trigger or a stored procedure or i havent really used sql server agent
You can use sp_send_dbmail to send email directly from SQL Server, assuming you’ve set up Database Mail.