Web Design Forum  
 
Go Back   Web Design Forum > Web Software > Programming

Reply
 
LinkBack Thread Tools Display Modes
Old 01-27-2012, 12:21 PM   #1
Silver Member
 
Join Date: Aug 2011
Location: Tennessee
Posts: 112
Default How do I send out daily emails from my web site?

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 by Glenn; 01-27-2012 at 01:17 PM.
Glenn is offline   Reply With Quote


Old 01-27-2012, 10:34 PM   #2
Diamond Member
 
Phreaddee's Avatar
 
Join Date: Feb 2011
Location: Newcastle, Australia
Posts: 1,137
Default

http://www.campaignmonitor.com/
__________________
if (headhurts == "possibly") {
alert ("keep going!");
}
else if (headhurts == "yes") {
alert ("go to sleep");
}
else if (headhurts == "damn !@#$ mofo scripts...") {
alert ("give up and have a beer!");
}
else {
alert ("watch TV");
}
Phreaddee is offline   Reply With Quote
Old 01-28-2012, 04:10 PM   #3
New Member
 
Join Date: Jan 2012
Posts: 2
Default

You need list of emails. Lets make an array of emails and send them an email.
PHP Code:
<?php $emails = array ( 'email@one.com''email@two.com''email@three.com' );

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 Code:
$emails = array ( 'email@one.com''email@two.com''email@three.com' ); 
write this
PHP Code:
$emails file 'emails.txt' ); 
and save emails in that file one per line
Julius is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 12:04 PM.


Camera Forum - Computer Forum - Web Design Forum

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Content Relevant URLs by vBSEO 3.6.0 ©2011, Crawlability, Inc.