2012-02-15 77 views

回答

1

你可以使用一個cronjob爲你做這個。

+0

,我新來此技術。 – user1211360 2012-02-15 13:05:45

+3

然後查看文檔 – 2012-02-15 13:10:20

+0

這對每臺主機都有很大的不同。對於進一步的規範,你應該谷歌如何與你的主機做到這一點。 – 2012-02-15 13:12:42

0

我假設你使用的是cpanel服務器。首先你創建一個php腳本來發送郵件。這是一個非常基本的。如果你需要,你可以使用我從php.net

<?php 
// multiple recipients 
$to = '[email protected]' . ', '; // note the comma 
$to .= '[email protected]'; 

// subject 
$subject = 'Birthday Reminders for August'; 

// message 
$message = ' 
<html> 
<head> 
    <title>Birthday Reminders for August</title> 
</head> 
<body> 
    <p>Here are the birthdays upcoming in August!</p> 
    <table> 
    <tr> 
     <th>Person</th><th>Day</th><th>Month</th><th>Year</th> 
    </tr> 
    <tr> 
     <td>Joe</td><td>3rd</td><td>August</td><td>1970</td> 
    </tr> 
    <tr> 
     <td>Sally</td><td>17th</td><td>August</td><td>1973</td> 
    </tr> 
    </table> 
</body> 
</html> 
'; 

// To send HTML mail, the Content-type header must be set 
$headers = 'MIME-Version: 1.0' . "\r\n"; 
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; 

// Additional headers 
$headers .= 'To: Mary <[email protected]>, Kelly <[email protected]>' . "\r\n"; 
$headers .= 'From: Birthday Reminder <[email protected]>' . "\r\n"; 
$headers .= 'Cc: [email protected]' . "\r\n"; 
$headers .= 'Bcc: [email protected]' . "\r\n"; 

// Mail it 
mail($to, $subject, $message, $headers); 
?> 

提取要設置以下示例的cron作業,你不需要任何編碼。請按照這個視頻或搜索「如何在cPanel中設置cron」在谷歌。

http://www.youtube.com/watch?v=E_UAp80UrPY

相關問題