刷新頁面我每天送3的自動電子郵件給學生以在PHP 24小時間隔的通知郵件。如何發送在選定的日期自動電子郵件,而不在PHP
回答
你可以使用一個cronjob爲你做這個。
,我新來此技術。 – user1211360 2012-02-15 13:05:45
然後查看文檔 – 2012-02-15 13:10:20
這對每臺主機都有很大的不同。對於進一步的規範,你應該谷歌如何與你的主機做到這一點。 – 2012-02-15 13:12:42
我假設你使用的是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」在谷歌。
- 1. 發送電子郵件自動在特定日期
- 2. 在特定的選定日期/時間發送電子郵件
- 3. 如何發送電子郵件至選定的電子郵件在PHP
- 4. 如何按日期自動發送電子郵件
- 5. 如何使用quartz.net在特定日期發送電子郵件
- 6. 發送基於日期的定期電子郵件使用PHP
- 7. 如何自動生成電子郵件腳本發送郵件到客戶端在php到期日期之前?
- 8. 如何自動發送電子郵件
- 9. 如何自動發送電子郵件
- 10. 如何發送自動電子郵件?
- 11. 如何在php中發送自動電子郵件
- 12. 如何在PHP中發送自動電子郵件?
- 13. 發送電子郵件自動在laravel
- 14. 在用戶選擇的日期發送電子郵件
- 15. 如何在特定時間自動發送電子郵件ASP.NET
- 16. 電子郵件不發送在PHP
- 17. 在asp.net發送電子郵件發送密碼而不是電子郵件
- 18. Salesforce在到期日前發送電子郵件日期
- 19. 根據日期自動從excel發送電子郵件
- 20. 根據MySQL日期發送自動電子郵件
- 21. PHP郵件不發送電子郵件
- 22. 如何在日期到期時自動發送郵件
- 23. PHP電子郵件不會發送到自定義電子郵件地址
- 24. 在特定日期發送電子郵件
- 25. 在特定日期發送電子郵件
- 26. 的Rails:發送定期電子郵件
- 27. 如何在UNIX中發送月份的日期和發送電子郵件
- 28. 如何使用PHP定期發送電子郵件
- 29. 發送自動回覆電子郵件的形式在PHP
- 30. 如果日期已過去使用php發送電子郵件
我想的cronjob是如何運作的,你應該使用cron – mgraph 2012-02-15 13:03:07