如何拦截 POP3 服务器上的邮件消息
我需要一个应用程序来拦截所有传入的邮件消息并根据某些规范对其进行修改。 我在这方面绝对是菜鸟,请详细说明:)
I need an application that will intercept all incoming mail messages and modify them according to some specs.
I am an absolute rookie at this, please detail :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个示例代码
Try this sample code
所有传入消息都将通过 SMTP 发送。
因此,您需要执行以下两件事之一:
如果您当前的服务器支持它,请挂钩它的 SMTP 事件,并在消息传递给本地目标用户之前修改消息。
或
您将需要一个位于真实 SMTP 服务器前面的 SMTP 代理服务。
在 SMTP 代理内部,修改消息,并将其传递到真实的 SMTP 服务器。
All incoming messages will be coming on over SMTP.
So, you need to do 1 of 2 things:
If your current server supports it, hook into it's SMTP events, and modify the message before it is passed on to the local intended user.
or
You will need a SMTP proxy service, that sits in front of your real SMTP server.
Inside of the SMTP proxy, modify the message, and pass it on to your real SMTP server.