通过 linux/php 连接到外部交换服务器?

通过 linux/php 连接到外部交换服务器?

我们有一个可用的 SMTP 中继,正在 Windows 服务器上使用。

[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP = email.relay.url
; http://php.net/smtp-port
smtp_port = 25

效果很好。

我们需要在 linux/php 上进行设置,我一直只指向 exchange 服务器(它一直有效 - 但也许我依赖另一个 mod 做某事)使用...

[mail function]
; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
sendmail_path = email.relay.url
sendmail_from = [email protected]

我正在与帮助台一起解决此问题,他们向我保证我的服务器 IP 有权使用电子邮件中继(Exchange 服务器)。我这边可以进行其他检查来查看发生了什么吗?

相关内容