How to send automatic mail after registration?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • praveenpandey29
    New Member
    • Mar 2008
    • 1

    How to send automatic mail after registration?

    Hello,

    How can we sent mail to our client on particular time without any admin actiion.?
    anyone can solve this problem using c#.

    Thanks
    Praveen Pandey
  • nateraaaa
    Recognized Expert Contributor
    • May 2007
    • 664

    #2
    Originally posted by praveenpandey29
    Hello,

    How can we sent mail to our client on particular time without any admin actiion.?
    anyone can solve this problem using c#.

    Thanks
    Praveen Pandey
    Have you considered using a windows service application? You can implement a timer control that will perform an action at a specific time. Windows services are the best way to perform an action automatically at a specified time. The windows service will always perform the specified action as long as the server is on and running.

    Nathan

    Comment

    • frist44
      New Member
      • Mar 2008
      • 4

      #3
      I've done this in the past by writing a simple windows console application that emails users in a certain database under a certain condition, and you just put that app in the "Scheduled Tasks" on a server, and it will run at whatever time interval you decide.

      The only reason I suggest this is because console applications are a littl easier to write then diving into a windows service, however they have gotten much easier too, but it will take a bit more work.

      Hope this helps,
      Brandon

      Comment

      Working...