I want to know how can i send a mail regularly within specific time. Suppose i want to send a mail daily at 12:00 o'clock at noon to a person. How can i do it. Plz give me ur valuable support.
Thanks
Sanjay Gupta
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
paul danielPosted Mar 9, 2010, 2:58 AM
http://forums.asp.net/p/1532407/3718884.aspx
http://weblogs.asp.net/jeffwids/archive/2009/10/12/asynchronously-sending-a-system-net-mail-mailmessage-in-c.aspx
Amit ChoudharyPosted Mar 9, 2010, 12:25 AM
you can achieve it with two ways:
1) using your application
you can achieve it here using JOB and Schedules.
first decide which one to choose and find appropriate method to do this.
Please mark as answer if it helps you.
Sam HobbsPosted Mar 8, 2010, 7:07 PM
NainilPosted Mar 8, 2010, 3:14 PM
In that case, you will have to create a Windows service which will have a timer which can be fired at every hour, minute, second, etc whatever your business requirements are. And at each tick event of the timer, you can simply check the time on the computer and accordingly send a mail. Hope this helps.