0

我想配置我的 wamp-mail-server。在文件 php.ini 中有我这个配置:

; 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 = kubus.martin@gmail.com

我在 php 文件中的代码:

< ?php mail('kubus.martin@gmail.com', 'Hello!', 'test email'); ? >

我变成了这个警报:
SMTP 服务器响应:需要 530 SMTP 身份验证

我没有任何密码。我正在使用wamp...

4

1 回答 1

1
  1. 在您的服务器上配置 SMTP 的人做得正确,因为它需要用户名和密码。
  2. 询问您应该使用的用户名和密码。
  3. 去获取PHPMailer,因为 PHP 的内置mail()函数很糟糕,无法处理 SMTP-Auth。
于 2013-09-13T23:05:55.170 回答