OS X上的AMPPS Mail

时间:2015-11-05 11:47:55

标签: php macos email ampps

我在OS X上运行了AMPPS(Softaculous AMPPS)版本10.9-10.11(Mavericks到El Capitan),并且从未配置任何电子邮件设置以使PHP mail()函数正常工作。

这是我的php.ini的邮件部分:

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

    ; For Win32 only.
    ; http://php.net/sendmail-from
    ;sendmail_from = me@example.com

    ; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
    ; http://php.net/sendmail-path
    ;sendmail_path =

    ; Force the addition of the specified parameters to be passed as extra parameters
    ; to the sendmail binary. These parameters will always replace the value of
    ; the 5th parameter to mail(), even in safe mode.
    ;mail.force_extra_parameters =

    ; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
    mail.add_x_header = On

    ; The path to a log file that will log all mail() calls. Log entries include
    ; the full path of the script, line number, To address and headers.
    ;mail.log =
    ; Log mail to syslog (Event Log on NT, not valid in Windows 95).
    ;mail.log = syslog

我的问题是,发送电子邮件的方式或位置是什么?我从未以任何方式配置AMPPS来发送电子邮件。他们似乎只是工作。

我问的原因是,我正在尝试在本地网络服务器上设置AMPPS,但即使在使用我的Gmail帐户配置smpt电子邮件设置后也无法收到电子邮件。

1 个答案:

答案 0 :(得分:0)

我发现OS X预装了postfix,这就是为什么我不需要为PHP设置SMTP设置。

然而,由于我的电脑有问题,为了避免麻烦,我只需在我的Windows本地服务器上安装hMailServer,而且PHP mail()函数可以完美地发送电子邮件。