gpt4 book ai didi

PHP IMAP 推送邮件通知到 iPhone

转载 作者:行者123 更新时间:2023-12-05 08:01:48 27 4
gpt4 key购买 nike

我正在开发一个 PHP 脚本,该脚本通过 IMAP 定期检查用户的收件箱中是否有新邮件。该脚本与 IMAP 服务器保持打开连接,并每 5 秒获取一次最新消息的 UID。如果 UID 大于最初记录的比较 UID,则脚本向用户的 iPhone 发送推送通知,通知他/她有新消息可用,记录新的 UID 作为比较 UID,并继续检查新消息以这种方式。这是脚本:

<?php
$server = '{imap.gmail.com:993/ssl}';
$login = 'email_address@gmail.com';
$password = 'my_email_password';
$connection = imap_open($server, $login, $password) OR die ("can't connect: " . imap_last_error());

$imap_obj = imap_check($connection);
$number = $imap_obj->Nmsgs;
$uid = imap_uid($connection, $number);


//infinite loop, need to add some sort of escape condition...
for(;;){

$imap_obj = imap_check($connection);
$number = $imap_obj->Nmsgs;

//if there is a new message send push notification
if(imap_uid($connection, $number) > $uid){

$uid = imap_uid($connection, $number);


$result = imap_fetch_overview($connection,$number,0);

$message = $result[0]->subject;


$deviceToken = 'xxxxxxxxxxxxxxxxxx';
$passphrase = 'my_secret_password';

$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);

$fp = stream_socket_client(
'ssl://gateway.sandbox.push.apple.com:2195', $err,
$errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);

if (!$fp)
exit("Failed to connect: $err $errstr" . PHP_EOL);

echo 'Connected to APNS' . PHP_EOL;

// Create the payload body
$body['aps'] = array(
'alert' => $message,
'sound' => 'default'
);

// Encode the payload as JSON
$payload = json_encode($body);

// Build the binary notification
$msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload;

// Send it to the server
$result = fwrite($fp, $msg, strlen($msg));

if (!$result)
//echo 'Message not delivered' . PHP_EOL;
else
//echo 'Message successfully delivered' . PHP_EOL;

// Close the connection to the server
fclose($fp);

}

sleep(5);
}

imap_close($connection);
?>

这行得通。但对我来说这似乎非常低效。每个额外的用户都与 IMAP 服务器保持无限连接,并每隔几秒检查一次新消息,这看起来很愚蠢。

有更好的方法吗?

最佳答案

你能不能使用类似 CRON 的东西来安排脚本每 30 秒运行一次,它为每个用户保留最后一个 UID 的数据库记录,然后在本地搜索每个用户邮箱(通过本地 shell 而不是 imapd 连接),如果特定用户有一条新消息,推送通知并更新数据库中该用户的最新 UID...

这是假设 PHP 脚本存在于邮件服务器上并且您具有 root 访问权限。

关于PHP IMAP 推送邮件通知到 iPhone,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11766165/

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