通过 fsockopen 发送邮件?

发布于 2024-09-30 18:43:11 字数 73 浏览 3 评论 0原文

我知道这是可能的,但是我可以在没有远程 SMTP 服务器或类似服务器的情况下吗?基本上我想用 PHP 发送邮件,但没有 mail()

I know this is possible, but can I do without a remote SMTP server or the like? Basically I want to send mail with PHP, but without mail()

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

情域 2024-10-07 18:43:11

我不确定您所说的“没有远程 SMTP 服务器”到底是什么意思,因为在任何邮件传递中,至少必须涉及其中之一 - 以收件人的名义接收邮件的邮件。 您可能可以做的(

由您决定是否值得)是使用 PHP 的套接字函数在端口 25 上打开与远程邮件服务器的连接。 Google“SMTP telnet”了解 SMTP 会话的一些示例(确实很简单),然后 Google“SMTP 代码”了解有关内容的更多说明远程服务器正在告诉你。

I'm unsure what you exactly mean with 'without a remote SMTP server', as in any mail delivery at least one of those has to be involved - the one receiving mail on account of the recipient...

What you can probably do (it's up to you to decide if it's worth the effort) is to use PHP's socket functions to open a connection on port 25 with a remote mail server. Google 'SMTP telnet' for some examples of how a SMTP session looks like (quite simple, to be true) and then google for 'SMTP codes' for more explanations of what the remote server is saying you.

不知在何时 2024-10-07 18:43:11

可能,但考虑到您应该熟悉 SMTP、POP3 和/或 IMAP 才能实际与邮件服务器交换数据,这并非完全微不足道。

您需要对您的应用程序进行编码,使其模仿 MTA 的行为,也就是说,如果您是将执行 mail() 函数执行的操作 - 并使用套接字。如果您使用的是 Linux,另一种选择是对 sendmail 进行操作系统调用。

Possible, but not entirely trivial considering the fact that you should be familiar with SMTP, POP3 and/or IMAP to actually exchange data with a mail server.

You need to code your app so it mimics the behavior of an MTA, that is if you're going to do what the mail() function does - and using sockets. If you're on Linux, another option is to make an OS call to sendmail.

友谊不毕业 2024-10-07 18:43:11

如果不使用 mail(),请查看 PHPMailer

我将这个库用于我所有的电子邮件代码。我已将其扩展为具有调试模式,以便我可以在测试代码时拦截传出的电子邮件。

我可能是错的,但您将始终使用 SMTP 服务器,即使该服务器只是带有 sendmail 的网络服务器。如果您在 Windows 上运行 PHP,则需要在内置 SMTP 服务中启用 IIS。

To not use mail() look into PHPMailer

I use this library for all my e-mailing code. I've extended it to have a debug mode so I can intercept outgoing e-mails while testing code.

I could be wrong but you will always be using an SMTP server even if that server is just the webserver with sendmail on it. If you were running your PHP on windows you'd need to enable IIS's in built SMTP service.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文