How to send email to users list on schedule

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
quannv
Forum Newbie
Posts: 2
Joined: Wed Nov 23, 2005 8:31 pm

How to send email to users list on schedule

Post by quannv »

I have users list on website, I want to send email to the users at fix time of day.
Can write that function with PHP?
How to do it?
User avatar
trukfixer
Forum Contributor
Posts: 174
Joined: Fri May 21, 2004 3:14 pm
Location: Miami, Florida, USA

Post by trukfixer »

you could try something like this: http://sourceforge.net/projects/phpemaillist
quannv
Forum Newbie
Posts: 2
Joined: Wed Nov 23, 2005 8:31 pm

How to send mail automatic at specific time?

Post by quannv »

phpemaillist can not deliver email automatic at specific time. Any suggestion?
User avatar
harrisonad
Forum Contributor
Posts: 288
Joined: Fri Oct 15, 2004 4:58 am
Location: Philippines
Contact:

Post by harrisonad »

Why not just upon runtime, check for the date and see if a user is worthy to receive a newsletter on that given date then if it is, send the mail.

:roll:
josh
DevNet Master
Posts: 4872
Joined: Wed Feb 11, 2004 3:23 pm
Location: Palm beach, Florida

Post by josh »

cron job, array of emails to send to, mail() function
Post Reply