Sending email alerts

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mike P

    Sending email alerts

    I need to have a program running that will check at regular intervals
    whether or not an alert email needs to be sent out reminding the user of
    a task that needs to be completed, and then send that email out.

    Does anybody know how I would go about doing this?



    *** Sent via Developersdex http://www.developersdex.com ***
  • Duggi

    #2
    Re: Sending email alerts

    On Jul 30, 1:49 pm, Mike P <mike.p...@gmai l.comwrote:
    I need to have a program running that will check at regular intervals
    whether or not an alert email needs to be sent out reminding the user of
    a task that needs to be completed, and then send that email out.
    >
    Does anybody know how I would go about doing this?
    >
    *** Sent via Developersdexht tp://www.developersd ex.com***
    Explore SmtpClient, MailMessage classes.

    -Cnu

    Comment

    • Duggi

      #3
      Re: Sending email alerts

      On Jul 30, 1:49 pm, Mike P <mike.p...@gmai l.comwrote:
      I need to have a program running that will check at regular intervals
      whether or not an alert email needs to be sent out reminding the user of
      a task that needs to be completed, and then send that email out.
      >
      Does anybody know how I would go about doing this?
      >
      *** Sent via Developersdexht tp://www.developersd ex.com***
      Also System.Net.Mail namespace.

      -Cnu

      Comment

      • Mike P

        #4
        Re: Sending email alerts

        I know how to send an email, the bit that I am not sure about is how to
        create a project that checks at regular intervals whether an email needs
        to be sent.

        *** Sent via Developersdex http://www.developersdex.com ***

        Comment

        • =?Utf-8?B?U2ltb24gVGFtbWFu?=

          #5
          Re: Sending email alerts

          System.Threadin g
          Windows Services

          look at those :)

          "Mike P" wrote:
          I know how to send an email, the bit that I am not sure about is how to
          create a project that checks at regular intervals whether an email needs
          to be sent.
          >
          *** Sent via Developersdex http://www.developersdex.com ***
          >

          Comment

          • Peter Morris

            #6
            Re: Sending email alerts

            I just wrote a console app and let the customer schedule it for whenever
            they wanted to.

            Comment

            Working...