dongxian8272 2014-05-06 16:45
浏览 13
已采纳

几个月后自动发送电子邮件PHP

I am creating a system that could send and e-mail to client when their payment need to pay. I have a DB that contain their status. If their status is 10 month, it will send an alert email to my client. I know the function of mail() but how to do this function work after 10 month of last my client payment?

  • 写回答

2条回答 默认 最新

  • dongre6073 2014-05-06 17:12
    关注

    Why dont use Cron? You need to set the mail code (like mail.php) to run every 10 months, for that cron is designed.

    Cron format looks like:

    minute hour day_of_month month day_of_week command_you_want_to_execute

    Example

    If you want to run a program in 15:31, day 06 in month 09, the cron will be:

    31 15 06 09 * /path/to/file.php

    Run the Cron

    Important for us to remember that php is a deciphered language and the php engine is it deciphers and executes our code. The software we need to run practice it is not our script, is our php engine and tell him to perform the code is written to the file. Usually the end result will look like this:

    * * * * * php -f /path/to/file.php

    Where should i write this

    Crontab file is a file of the operating system. Users do not always have access to it, but you can write the commands through the panel of the storage company.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥50 导入文件到网吧的电脑并且在重启之后不会被恢复
  • ¥15 (希望可以解决问题)ma和mb文件无法正常打开,打开后是空白,但是有正常内存占用,但可以在打开Maya应用程序后打开场景ma和mb格式。
  • ¥20 ML307A在使用AT命令连接EMQX平台的MQTT时被拒绝
  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能