Re: [PHP] Automatically send email on special day

2002-08-15 Thread David Buerer
PROTECTED] To: NoWhErEMan [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, August 14, 2002 10:11 PM Subject: Re: [PHP] Automatically send email on special day when the function excecutes, it checks the current date, then looks in a little textfile, if it's a match, it stops the script

RE: [PHP] Automatically send email on special day

2002-08-15 Thread Jay Blanchard
Whay not just set up a page that lists today's birthdays and a button that sends e-mail greetings. You can place this page in a secure directory so everyone who visits can get to it and click the button. a. create page and script b. place in secure directory c. log in each day d. click button

RE: [PHP] Automatically send email on special day

2002-08-15 Thread César Aracena
. -Original Message- From: David Buerer [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 3:26 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] Automatically send email on special day Hey guys, you're all making this too dificult. Windows NT, Windows 2000, Windows XP, and even Window

RE: [PHP] Automatically send email on special day

2002-08-15 Thread David Buerer
PROTECTED] Subject: RE: [PHP] Automatically send email on special day David. This is for you to note, as well as most of the people of this list who think that ALL OF US use own our computers as Internet Servers, being able to make CRON jobs or scheduling... well, WE DON'T. Some of us don't even has

Re: [PHP] Automatically send email on special day

2002-08-15 Thread Jason Wong
On Thursday 15 August 2002 21:28, César Aracena wrote: [snip] I'm tired of watching replies like just make a CRON job or set up a scheduled task so from now on, I will be including no server reach or something like that into all my messages and suggest that all the people who's also in my

RE: [PHP] Automatically send email on special day

2002-08-14 Thread César Aracena
This have been very much discussed in this list, and the only logical way of doing this through PHP would be to have a script that reads the actual date of the server's system once a day, but that would be just impossible without having that script (page) reloaded at least once a day. I think

Re: [PHP] Automatically send email on special day

2002-08-14 Thread Liam MacKenzie
, I'm having one of those days Ignore me... - Original Message - From: César Aracena [EMAIL PROTECTED] To: 'NoWhErEMan' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, August 15, 2002 2:17 PM Subject: RE: [PHP] Automatically send email on special day This have been very much

RE: [PHP] Automatically send email on special day

2002-08-14 Thread César Aracena
: Re: [PHP] Automatically send email on special day Hey, if you don't have access to CRON, you could try and include the page in your index.php. Set it so it only runs once though, per day. That means that as soon as someone visits your site they activate it for that day. It'd only work

Re: [PHP] Automatically send email on special day

2002-08-14 Thread NoWhErEMan
they WILL have at least ONE visitor per day for sure. C. -Original Message- From: Liam MacKenzie [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 1:22 AM To: 'NoWhErEMan'; [EMAIL PROTECTED] Subject: Re: [PHP] Automatically send email on special day Hey, if you don't have

Re: [PHP] Automatically send email on special day

2002-08-14 Thread Liam MacKenzie
Message - From: NoWhErEMan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 15, 2002 3:08 PM Subject: Re: [PHP] Automatically send email on special day I can ensure ar least one visitor per day, that;s me!! Since my server in on my local windows mechine, i can load the page at start

Re: [PHP] Automatically send email on special day

2002-08-14 Thread Chris Shiflett
if last_email_date != today { send email last_email_date = today } Happy hacking. Chris NoWhErEMan wrote: I can ensure ar least one visitor per day, that;s me!! Since my server in on my local windows mechine, i can load the page at start up. But i have a question, how can i ensure