Send an auto mail
-
I am working with asp.net and MS sql server 2005. I want send an automatic mail to those status is incomplete(In my database table one column has data like either "complete" or "incomplete"). When the status is "incomplete",then send a mail daily once to "so and so email id". Please help me
-
I am working with asp.net and MS sql server 2005. I want send an automatic mail to those status is incomplete(In my database table one column has data like either "complete" or "incomplete"). When the status is "incomplete",then send a mail daily once to "so and so email id". Please help me
Yes... But what is the problem with it. You might use your website easily to send mails daily... ;)
Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascript -
Yes... But what is the problem with it. You might use your website easily to send mails daily... ;)
Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using JavascriptHow to do that? Is it necessary to visit my website daily. If not plz tell me how to do that?
-
How to do that? Is it necessary to visit my website daily. If not plz tell me how to do that?
Why Dont You Go For Sql Jobs..! or You Can create a windows application for sending the mail and add this application to task scheduller ..!if you are using windows operating system..!:thumbsup:
LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.
-
How to do that? Is it necessary to visit my website daily. If not plz tell me how to do that?
This should be the perfect one for you Simulate a Windows Service using ASP.NET to run scheduled jobs[^] You dont require windows service / Schedule tasks to do this .. Cheers. :rose:
Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascript -
I am working with asp.net and MS sql server 2005. I want send an automatic mail to those status is incomplete(In my database table one column has data like either "complete" or "incomplete"). When the status is "incomplete",then send a mail daily once to "so and so email id". Please help me
As you are using
SQL Server 2005
, you can easily useSQL Server Job agent
to schedule and send mail from SQL Server itself which is one of the easiest task that you can do. Here is one of the ref. that you can use : Sending Mail using SQL Server 2005[^] Another option is to useWindows Service
. Use someTimerDelegate
to monitor yourDB
in regular manner and based on the condition sends mail to the user. ThanksAbhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.
-
How to do that? Is it necessary to visit my website daily. If not plz tell me how to do that?
Krishhhhhhhhhhhhhh wrote:
How to do that?
I have provided you one Ref. Which will help you to go ahead.
Krishhhhhhhhhhhhhh wrote:
Is it necessary to visit my website daily.
No ! :-D
Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.
-
I am working with asp.net and MS sql server 2005. I want send an automatic mail to those status is incomplete(In my database table one column has data like either "complete" or "incomplete"). When the status is "incomplete",then send a mail daily once to "so and so email id". Please help me
Hi, If you want to send mail automatically without open website, you should create jobs and scheduler in sqlserver which will run everytime
Farogh Haider Web developer