How do I send out daily emails from my web site?

Glenn

Member
I need to set up several php emails to go out each day for several weeks or maybe months. How do I get these emails to go out each day without going to and visiting my web site each day?
 
Last edited:

Julius

New Member
You need list of emails. Lets make an array of emails and send them an email.
PHP:
<?php $emails = array ( '[email protected]', '[email protected]', '[email protected]' );

foreach ( $emails as $email ) {
    mail ( $email, 'Subject', 'Hello! We missed you on webdesignforum.com' );
}

?>
You can save emails to emails.txt file and instead of writing
PHP:
write this
PHP:
$emails = file ( 'emails.txt' );
and save emails in that file one per line
 
Top