Jump to content
xisto Community
Sign in to follow this  
humphrey88

Emailer Not Working

Recommended Posts

Here's what I wanted to do: set up a "puzzle of the day" email delivery system that people could subscribe to.

 

Here's how I attempted it: using a modified version of an article on asp101 (getting scripts to run on a schedule), I put the following code at the bottom of my site's homepage:

 

 

Code:

 

<% If DateDiff("d", Application("LastScheduledRun"), Now()) > 0 Then Application.Lock Application("LastScheduledRun") = Now() Application.UnLock 'Trigger the emailer, which will then redirect back to here. Response.Redirect "/delivery.asp" End If %>

 

 

delivery.asp in turn sends off that day's puzzle and redirects back to the homepage.

 

Well, it worked, sort of. I had my own email as the only recipient for the past 4 days as a test. And I did indeed get the puzzles: 3 times a day. That's problem number 1.

 

Until today, when I didn't get the puzzle at all. By this time of day, it's usually arrived twice. That's problem number 2.

 

Any suggestions? Up to and definitely including "try the following free service/script instead"...

 

Note that this is a godaddy hosted, cheap-as-possible account. I don't believe I can access any kind of scheduled task controller on the server.

 

Thanks in advance.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.