automatically send reminder email

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default automatically send reminder email

    I'm very surprised that I can?t find anything on this subject in these forums.
    Usually I can find the answers to any questions I have here.

    Anyway I?m looking for a way to automatically send a reminder email at a later
    date. For example: If someone makes an appointment online, I want them to
    automatically be sent a reminder email the day before. Or, they sign up for a
    program and then automatically get an update sent 15 days later. I?m sure this
    is possible but I have no idea how to it.

    Does anyone know of an extension, component or ever pure ASP code that will
    accomplish this? Thanks!


    cdub Guest

  2. Similar Questions and Discussions

    1. PDF opens automatically when attached to email -Help!
      I have Acrobat 6.0.2 Professional and I scan on an Epson Perfection 4870. Every PDF I make will not stay closed when I attach it to an email.(nor do...
    2. Automatically send an email from a database
      Here are the examples of what I'm looking for: A user tries to login but has forgotten their password. From a fprgottten password link,They enter...
    3. Group email doesn't send because of bad email
      Hi, say I have to email 100 people at once, but one of the email addresses is bad, meaning formatted right but does not exist anymore. Right now,...
    4. automatically send http header
      With php you don't need to explicitly send http header before print or echo. However in perl you need it. Even with mod_perl you have to issue...
    5. Anyway to Kill virus email on my Host Mailbox automatically?
      In the last two days I've been unindated with 100+ virus .pif and .scr attachment emails from forged return addresses. The real address from the...
  3. #2

    Default Re: automatically send reminder email

    The problem is without a exe programme you have to reply on server side code,
    which needs a trigger, so it can not just run when a Date arrives, it needs you
    to say view a page, then it will be able to check if that Date has occured then
    run your script.
    With shared hosting it is difficult if not impossible to use exe programmes,
    as your host will not like it.

    You could investigate a trigger in say SQL server, but again you are limited
    to what your host will let you do.

    Originally posted by: cdub
    I'm very surprised that I can?t find anything on this subject in these forums.
    Usually I can find the answers to any questions I have here.

    Anyway I?m looking for a way to automatically send a reminder email at a later
    date. For example: If someone makes an appointment online, I want them to
    automatically be sent a reminder email the day before. Or, they sign up for a
    program and then automatically get an update sent 15 days later. I?m sure this
    is possible but I have no idea how to it.

    Does anyone know of an extension, component or ever pure ASP code that will
    accomplish this? Thanks!




    CarlGrint Guest

  4. #3

    Default Re: automatically send reminder email

    Hi cdub

    I have looked into a similar scenario to yours and the only viable solution
    I could do was to write a batch file on an internal company server that has
    permanant access to the internet.
    This batch file is scheduled daily to open up Internet explorer and navigate
    to the URL of an .asp page I wrote that executes and sends emails to
    subscribers that meet the required parameters for that day.
    In this day and age where ADSL is widely used and permanet internet access
    is the nom then this isn't a bad way of dealing with ASP page automation. If
    you are one of the unlucky people that still don't have ADSL then you could
    still schedule a dialup and execute your batch file as above but I do know
    from experience this can be a little unreliable.

    Hope this gives you something to work on.

    Regards
    Bren


    Bren Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139