有没有办法可以监控邮箱的新电子邮件并做一些例如
function onEventNewEmail()
{
//copy a file to a specified server on new email arrival
echo "File copied to the server you specified...\n";
}
新电子邮件到达时。
答案 0 :(得分:2)
您需要创建一个定期检查新邮件然后执行功能的cronjob。 PHP被解释,因此你无法真正谈论“事件”。
编写一个小的PHP脚本,它可以执行您想要的操作,然后创建一个执行每个X [时间间隔]的cronjob(或服务)并执行您想要的操作。