Jump to content

[SOLVED] php Auto emailer, possible?


gathos

Recommended Posts

now I know php is a server side programming language - meaning that all processing is done on teh server then results displayed on the client side.

 

what i want to know is how you would go about making a script (and if possible in php) that would allow me to automaticly email my customers in a database, every six months.  i have searched google, and well i think i might be googlitis deficiant.

 

can anyone point me to some good links that might help? or possible something on php.net that could direct me in the right way? thanks

 

later days.

gathos

Link to comment
https://forums.phpfreaks.com/topic/134578-solved-php-auto-emailer-possible/
Share on other sites

Let me help you out then.  cron is a unix utility that runs commands at a given time.  You'd use a cron that looks like this to e-mail someone every 6 months:

 

0 0 0 0 6/12 php /path/to/your/script.php

 

Google cron syntax for more info if you need it.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

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.