是否可以将imap_open和php:// stdin组合在一起以打开imap电子邮件流? 我有下面的代码,但什么都没有发生。请帮忙。我的电子邮件是互联网电子邮件,正在从本地主机运行此php脚本。
<?php
//imap server logon details
$server = "{mail.domain.com:993/ssl}";
$username = "myname@domain.com";
$password = "mypassword";
// connect to the imap sever
$con_mailbox = imap_open($server, $username, $password);
$email = file_get_contents('php://stdin');
preg_match_all("/(.*):\n(.*)\n/i", $email, $matches);
mail(myname@domain.com, 'Successfully Connected to server', 'From:noreply@domain.com');
?>
答案 0 :(得分:-1)
感谢Max回复我的帖子。我自己找到了答案。我设法解析了imap电子邮件,并提取了所需的变量并将其插入数据库中。我当时在做一个服务台项目。谢谢。