doushichi3678 2013-10-01 17:45
浏览 19

too long

I'm trying to send mail with Gmail as server. The email is never sent, and no confirmation or error messages given. Mail, Net_SMTP and Net_Socket pear packages are installed. I set the proxy, and can connect to the internet via cmd. The echo after the "send" never appears, but the one before does, which means the connection status is null. Can anyone see what I'm missing/misunderstanding?

php:

        if (isset($_POST['submit'])){
            error_reporting(0);
            $human = $_POST['human'];
            $name = $_POST['name'];
            $email = $_POST['email'];
            $message = $_POST['message'];
            $to = 'toreceive@gmail.com'; 
            $body = "$message";
            $header = array (
                'From' => 'tosend@gmail.com',
                'Subject' => 'Hello'
            );
            $smtp = Mail::factory('smtp', array(
                'auth' => true,
                'host' => 'ssl://smtp.gmail.com',
                'port' => '465',
                'username' => 'username@gmail.com',
                'password' => 'password',
                'charset' => 'iso-8859-1'
            ));
            if (connection_status == 0)
                echo "<script type='text/javascript'>alert('Before Mail');</script>";
            $mail = $smtp->send($to, $header, $body);
            echo "<script type='text/javascript'>alert('After Mail');</script>";


            if (@PEAR::isError($mail)) 
                echo("<p>" . $mail->getMessage() . "</p>");
            else 
                echo("<p>Message successfully sent!</p>");


        }
    ?>

relevant php.ini:

[mail function]
SMTP = localhost
smtp_port = 25
extension=php_openssl.dll
extension=php_sockets.dll
  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 Oracle中如何从clob类型截取特定字符串后面的字符
    • ¥15 想通过pywinauto自动电机应用程序按钮,但是找不到应用程序按钮信息
    • ¥15 如何在炒股软件中,爬到我想看的日k线
    • ¥15 seatunnel 怎么配置Elasticsearch
    • ¥15 PSCAD安装问题 ERROR: Visual Studio 2013, 2015, 2017 or 2019 is not found in the system.
    • ¥15 (标签-MATLAB|关键词-多址)
    • ¥15 关于#MATLAB#的问题,如何解决?(相关搜索:信噪比,系统容量)
    • ¥500 52810做蓝牙接受端
    • ¥15 基于PLC的三轴机械手程序
    • ¥15 多址通信方式的抗噪声性能和系统容量对比