1

ZF2 の Message クラスを使用してメールを送信しようとしています。ただし、以下のコードを実行した後、ページはリダイレクトを試み、1 分ほど後に「ローカル ホストがタイムアウトしました」というエラーが表示されます。何か案は?

    $message = new Message();
    $message->addTo('ToEmail@gmail.com')
      ->addFrom('FromEmail@gmail.com')
      ->setSubject('Greetings and Salutations!')
      ->setBody("Sorry, I'm going to be late today!");

    // Setup SMTP transport using LOGIN authentication
    // Setup SMTP transport using PLAIN authentication over TLS
    $transport = new SmtpTransport();
    $options   = new SmtpOptions(array(
        'name'              => 'localhost',
        'host'              => 'localhost',
        'port'              => 8888, // Notice port change for TLS is 587
        'connection_class'  => 'plain',
        'connection_config' => array(
            'username' => 'FromEmail@gmail.com',
            'password' => 'FromPassword',
            'ssl'      => 'tls',
        ),
    ));
    $transport->setOptions($options);
    $transport->send($message);
4

1 に答える 1

0

Zend Framework 2.0 を使用してメールを送信できます。以下の一連のコードに従ってください。

$options = new Mail\Transport\SmtpOptions(
                                    'smtp_options' => array(
            'name' => 'localhost',
            'host' => 'smtp.gmail.com',
            'port'=> 587,
            'connection_class' => 'login',
            'connection_config' => array(
                'username' => '<your gmail account username>@gmail.com',
                'password' => '<your gmail account password>',
                'ssl'      => 'tls'
            ),
        )
                            );


                            $content = 'Message to be sent in the email.(goes here)';  

                            // make a header as html  
                            $html = new MimePart($content);  
                            $html->type = "text/html";  
                            $body = new MimeMessage();  
                            $body->setParts(array($html)); 

                            // instance mail   
                            $mail = new Mail\Message();  
                            $mail->setBody($body); // will generate our code html from template.phtml  
                            $mail->setFrom('FromEmail@gmail.com');  
                            $mail->setTo('ToEmail@gmail.com');
                            $mail->setSubject('Subject for sending email.');

                            $transport = new Mail\Transport\Smtp($options);
                            $transport->send($mail);

問題が発生した場合は、dineshs@mindfiresolutions.com までお知らせください。

于 2013-12-04T10:17:11.650 に答える