Warning: mail() [function.mail]: SMTP server response: 530 5.7.0 Must issue a STARTTLS command first不知这是什么问题?如何解决?

解决方案 »

  1.   

    你是不是用的wammp包啊检查下这个开了没有!
      

  2.   

    ssl问题
    要使用ssl加密链接
      

  3.   

    认同3#,服务器没有装ssl服务
      

  4.   


    我是在本机安装的apache服务器,如何给它装ssl呢?
      

  5.   

    这个apache下载的时候就分两种的 一个带ssl一个没有带
      

  6.   


    我的是带SSL的,可是网上说还得弄证书什么的挺麻烦
    和证书有关系吗?
      

  7.   

    用sendmail结合其它的smtp服务器,如smtp.163.com来实现发邮件。现在大部分邮箱都要求smtp验证,所以要在sendmail.ini中加入用户名和密码。php.ini配置 (以用163邮箱为例)[mail function]
    ; For Win32 only.
    SMTP = smtp.163.com
    smtp_port = 25
    ; For Win32 only.
    sendmail_from = [email protected]
    ; For Unix only.  You may supply arguments as well (default: “sendmail -t -i”).
    sendmail_path = “D:\xampp\sendmail\sendmail.exe -t”就配置三项,smtp、smtp_port和sendmail_pathsendmail.ini配置[sendmail]  
    ; you must change mail.mydomain.com to your smtp server
    smtp_server=smtp.163.com
    smtp_port=25
    auth_username=yourusername
    auth_password=yourpassword
    [email protected]网上有下的,如果你是用xampp,那里面直接就带了。同时在虚拟主机的conf里加上这样一句php_admin_value sendmail_path ‘D:\xampp\sendmail\sendmail.exe -t [email protected]’此邮件地址为用户的邮件地址,随便添。
      

  8.   


    我的操作系统是windows,服务器是apache
    还要再安装sendmail吗?
      

  9.   

    php mail()函数在windows不能用,需要安装sendmail
    1.从http://glob.com.au/sendmail/下载sendmail.zip
    2.解压到C:下,例如C:\php\sendmail,最好短路径,长路径名有可能产生问题。
    3.修改php.ini如下
    sendmail_path = "C:\wamp\sendmail\sendmail.exe -t"4.根据你自己的配置环境修改sendmail.ini。
    第一次最好启用debug.log_file,error_logfile,以查看sendmail是否生效。
    5.重启apache
      

  10.   


    可是php.ini中的
    sendmail_path 字段不是 For Unix only 的吗?
    我是windows操作系统。
      

  11.   

    [mail function]
    ; For Win32 only.
    ;SMTP = smtp.163.com
    ;smtp_port = 25
    ; For Win32 only.
    ;sendmail_from = [email protected]
    ; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
    sendmail_path = "D:\www\sendmail\sendmail.exe -t"
      

  12.   

    本人刚解决这个邮件发送的问题,你可以下载一个smtp服务器,例如free smtp server ,然后再php.ini  里设置smtp = localhost;smtp_port = 25即可。