为什么 PHPMailer 需要 SMTP 来发送电子邮件而 postfix 不需要
我刚刚安装了 postfix:它无需我进行任何配置即可发送电子邮件。 (我选择无配置 设置)
我能知道为什么 phpmailer 需要有效的 smpt 或中继来发送电子邮件,而 postfix 不需要吗?
谢谢
i just installed postfix: it's sending email without any configuration by me. (I choosed no-config
setup)
Can I know why phpmailer needs a valid smpt or relay to send emails while postfix doens't?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
postfix 是一个邮件服务器。 phpmailer 是一个与邮件服务器交互的库。
postfix is a mail server. phpmailer is a library to interface with a mail server.
因为 postfix 是 SMTP 服务器。
Because postfix is a SMTP server.
是的,恭喜你,你已经为自己构建了一个开放的中继:)
据我目前在偶然发现他们的文档时所看到的,Phpmailer 需要服务器配置。
我想 Postfix 是一个邮件服务器,它是它下面的一层。
Yes, well congratz, you have build yourself kind of an open relay then:)
Phpmailer needs server config as far as I could for now see when stumbling over their docs.
Postfix is a mail server which would be a layer under this, I suppose.