php自动发送邮件并进行设置?
我想创建电子邮件并保存数据库
时间电子邮件自动发送到电子邮件 例如:我在晚上8点设定
发送email1(to,subject1,message1),发送email2(to,subject2,message2)....
因为我使用数据库mysql所以,如果status = 0
,我想要自动发送主题+消息status = 0不发送,status = 1是旧发送。
请帮忙。 感谢。
答案 0 :(得分:0)
您需要使用cron作业来访问页面:
0 20 * * * curl http://yourwebsite.com/emailscript.php
^每个星期,每个星期,每个月的20分钟(晚上8点)0分钟发射。
emailscript.php的内容:
$to = "email@email.com";
$subject = "Cron Job HTML email";
$message = "
<html>
<head>
<title>HTML email</title>
</head>
<body>
<p>This email contains HTML Tags and is a test of the cron jobs!</p>
</body>
</html>
";
// Always set content-type when sending HTML email
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
// More headers
$headers .= 'From: email@yoursite.com <email@yoursite.com>' . "\r\n";
mail($to,$subject,$message,$headers);