php
  • email
  • 2011-10-19 40 views 0 likes 
    0
    <?php 
        SendEmail("[email protected]","Dima", "trololo"); 
        function SendEmail($to,$user_name, $user_password) 
        { 
    
        $subject="Political forum: registration"; 
        $body = 'Your user name is: ".$user_name <br/>'.$user_name.' Your password is: '.$user_password.'<br/><br/> Click the link below for validation: <a href="#">Validation_Link</a>'; 
    
        $headers="FROM: $to\r\n"; 
        $headers.=" Content=type: text/html\r\n"; 
    
    
        if (mail($to, $subject, $body, $headers)) { 
         echo("<p>Message successfully sent!</p>"); 
         } else { 
         echo("<p>Message delivery failed...</p>"); 
         } 
        } 
    
    ?> 
    

    無法發送電子郵件!無法與電子郵件()PHP函數以上

    我有一個小閱讀,我發現,你需要改變這個inyour php.ini文件:

    ;僅適用於Win32。 ; http://php.net/smtp SMTP = localhost; http://php.net/smtp-port SMTP_PORT = 25

    ;僅適用於Win32。 ; http://php.net/sendmail-from sendmail_from = [email protected]

    我做到了,但它仍然無法

    消息:

    Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in C:\xampp\htdocs\PoliticalForum\StoredProcedure\User\email.php on line 16 
    

    郵件傳遞失敗...

    +1

    「失敗」意味着什麼?任何錯誤消息? –

    +1

    你有任何錯誤信息嗎?如果是靜默錯誤,請在執行郵件()後嘗試執行var_dump error_get_last() – pduersteler

    +0

    對不起忘了添加...已添加以上 – Matrix001

    回答

    1

    一件小事..你發送的文本看起來不太好..但我想你會修復,如果你得到它的工作..

    爲什麼它不工作:你似乎嘗試發送到雅虎地址..很多服務器拒絕的是來自同一個地址的郵件(特別是你是從你自己的服務器發送,而不是雅虎)

    因此而不是使用用戶的電子郵件地址作爲發件人挑選的另一個 所以你需要改變這一行:

    $headers="FROM: $to\r\n"; 
    

    ,並使用超過$其他一些東西

    +0

    我說這個(即可能是服務器的問題),因爲我跑你的腳本,但使用私人電子郵件地址和我得到的消息 – mishu

    +0

    no..it犯規幫助:我嘗試將電子郵件轉發到gmail ..它很容易接受電子郵件..我仍然得到這個:警告:mail()[function.mail]:無法連接到「本地主機」端口25的郵件服務器,驗證您的「SMTP」和「smtp_port在php.ini「設置或使用的ini_set()在C:\ XAMPP \ htdocs中\ PoliticalForum \ StoredProcedure的\上線16 – Matrix001

    +0

    用戶\ email.php但你肯定,你應該能夠發送電子郵件?你有一個smtp服務器安裝? – mishu

    相關問題