gpt4 book ai didi

php - 如何自动按日期发送电子邮件

转载 作者:行者123 更新时间:2023-11-29 23:28:52 25 4
gpt4 key购买 nike

我有这个源代码并且运行良好,但我想按日期发送电子邮件比如

(Today date == date from DB)
{
Code send
}

如何自动发送,我不想重新加载页面。

我的源代码:

  `<`?php
include "classes/class.phpmailer.php"; // include the class name
$mail = new PHPMailer(); // create a new object
$mail->IsSMTP(); // enable SMTP
$mail->SMTPDebug = 1; // debugging: 1 = errors and messages, 2 = messages only
$mail->SMTPAuth = true; // authentication enabled
$mail->SMTPSecure = 'ssl'; // secure transfer enabled REQUIRED for GMail
$mail->Host = "smtp.gmail.com";
$mail->Port = 465; // or 587
$mail->IsHTML(true);
$mail->Username = "gmailusername@gmail.com";
$mail->Password = "**********";
$mail->SetFrom("anyemail@gmail.com");
$mail->Subject = "Your Gmail SMTP Mail";
$mail->Body = "<b>Hi</b>";
$mail->AddAddress("anyaddrees@domain.com");
if(!$mail->Send()){
echo "Mailer Error: " . $mail->ErrorInfo;
}
else{
echo "Message has been sent";
}
?>

最佳答案

您可以在 Windows 上使用任务计划程序或在 Linux 上使用 cronjob。另外,正如“Jan”在评论中所说,您能否提供更多信息。

关于php - 如何自动按日期发送电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26730089/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com