联系人集合-php、mysql、邮件服务器
我正在构建一个项目,假设有一种方法可以拦截来自邮件服务器的传入和传出邮件。如果不可能,请告诉我,我是邮件服务器的新手,因此您可以提供的任何材料将不胜感激。
我正在构建一个项目来管理联系人以及组织在广泛的服务中与他们的交互。我希望联系人的创建尽可能自动进行。从这个意义上说,我认为有趣的是创建一个页面来拦截来自组织邮件服务器的所有传入和传出消息。截获的数据将存储在 MySQL 数据库中。
这在 PHP 中可能吗?这是正确的处理方法吗?
我正在寻找的是一个开始寻找和学习的地方。阅读材料、教程、案例研究等。无论你能发送什么来帮助我更接近我的目标。另外,如果我上面描述的方法有缺陷,或者您可以推荐更好的方法,我也很愿意听听您对此的想法。
I am building a project assuming that there is a method for intercepting incoming and outgoing mail from a mailserver. If it is not possible please let me know, I am new working with mail servers, so any material that you could provide would be greatly appreciated.
I am building a project to manage contacts and the organization's interaction with them throughout a broad range of services. I would like the creation of the contacts be as automatic as possible. In this sense, what I had thought would be interesting was to create a page that would intercept all incoming and outgoing message from the org.'s mailserver. The intercepted data would be stored on a MySQL database.
Is this possible in PHP? Would this be the correct way of going about it?
What I'm looking for is a place to start looking and learning. Reading materials, tutorials, case-studies, etc. Whatever you can send over to help me get closer to my goal. Also, if the method I've described above is flawed, or you can recommend a better method, I'd be willing to hear your thoughts on that as well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果是这样,请查看 PHP 的 IMAP 函数,因为它们提供了您轻松完成此操作所需的一切。
看看 http://www.php.net/manual/en/ref .imap.php 并询问有关您可能使用的功能的任何具体问题。
If so have a look at PHP's IMAP functions as they provide everything you need to be able to do this quite easily.
Have a look at http://www.php.net/manual/en/ref.imap.php and ask any specific questions about the functions used you may have.