如何在选定日期发送自动电子邮件而不刷新页面中的页面

时间:2012-02-15 13:02:01

标签: php html

我必须每天向学生发送3封自动电子邮件作为通知电子邮件,间隔24小时在php。

2 个答案:

答案 0 :(得分:1)

您可以使用cronjob为您执行此操作。

答案 1 :(得分:0)

我假设您正在使用cpanel服务器。首先,您创建一个PHP脚本来发送邮件。这是一个非常基本的问题。如果需要,可以使用我从php.net中提取的以下示例

<?php
// multiple recipients
$to  = 'aidan@example.com' . ', '; // note the comma
$to .= 'wez@example.com';

// 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 <mary@example.com>, Kelly <kelly@example.com>' . "\r\n";
$headers .= 'From: Birthday Reminder <birthday@example.com>' . "\r\n";
$headers .= 'Cc: birthdayarchive@example.com' . "\r\n";
$headers .= 'Bcc: birthdaycheck@example.com' . "\r\n";

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

要设置cron作业,您不需要任何编码。请关注此视频,或在谷歌搜索“如何在cpanel中设置cron”。

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