August 14, 2004 at 10:51 pm
Could anyone walk me through how to do the following:
Can this be done with SQL Server only or is there a third party app?
I know its alot but I'm having a hard time finding resourses.
August 17, 2004 at 8:00 am
This was removed by the editor as SPAM
August 20, 2004 at 6:52 am
A couple of suggestions:
The simplest option might be to formulate a query that builds the HTML that you want to be the body, and then use the SQL mail agent via DTS or stored proc to send them out. DTS jobs and stored proc execution can easily be scheduled via SQL Agent. This would work for simple reports.
Another route might be using Notification Services, which is a free add on for MSSQL 2k. You can download it from Microsoft.
August 26, 2004 at 10:14 am
this is so simple. we can do it in 2 steps.
step 1: build the html file using sp_makewebtask
step 2: by using the sp_smtp_sendmail, you can send mail.
and sp_smtp_sendmail is a third party SP you can get it from http://www.sqldev.net/xp/sp_smtp_sendmail.htm
you can make it as a job and then schedule it to achive your needs.
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply