2017-12-29 31 views
-1

Windows 10でSymfony 4、Wamp、fake sendmailのメールを送信しようとしていますが、成功していないのですが、OVHでホストされています。私は、OVHでホスティングされているサイトをSymfony 2上で動作する同じパラメータで指定したいと思っています.Swiftmailerは完全に動作します。ここでSymfony 4 SwiftmailerをWindows 10上で動作するローカルマシンから電子メールを送信する方法は?

はではSwiftMailerのための私のSymfony .envラインである:ここでは

MAILER_URL=smtp://smtp.dnimz.com:465?encryption=ssl&auth_mode=login&[email protected]&password=*** 

はではSwiftMailerのための私のSymfonyコントローラの一部である:ここで

$message = (new \Swift_Message('Hello Email')) 
    ->setFrom(array($this->container->getParameter('mailer_user') => 'dnimz')) 
    ->setTo($user->getEmail()) 
    ->setBody(
     $this->renderView(
      'emails/email_registration.html.twig', 
      array('username' => $user->getUsername()) 
     ), 
     'text/html' 
    ); 

try { 
    $this->get('mailer')->send($message);  
    $this->addFlash('notice', 'mail envoyé !'); 
} catch (\Exception $e) { 
    $this->addFlash(
     'notice', 
     '<strong>Le message n\'a pu être envoyé !</strong>' 
    ); 
} 

は、偽のsendmailからの私sendmail.iniです:

[sendmail] 

smtp_server=smtp.dnimz.com 
smtp_port=465 
smtp_ssl=auto 
error_logfile=error.log 
[email protected] 
auth_password=*** 
pop3_server= 
pop3_username= 
pop3_password= 
force_sender= 
force_recipient= 
hostname= 

ここは私のphp.iniメール機能の部分です:

電子メールを送信する場合
SMTP =smtp.dnimz.com 
smtp_port =465 
sendmail_from = "[email protected]" 
sendmail_path = "C:/wamp64/sendmail/sendmail.exe" 
mail.add_x_header = On 

、私はこの警告やエラーを持っている:

[debug] Warning: stream_socket_client(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed

2017-12-29T18:44:09+00:00 [debug] Warning: stream_socket_client(): Failed to enable crypto

2017-12-29T18:44:09+00:00 [debug] Warning: stream_socket_client(): unable to connect to ssl://smtp.dnimz.com:465 (Unknown error)

2017-12-29T18:44:09+00:00 [error] Exception occurred while flushing email queue: Connection could not be established with host smtp.dnimz.com [ #0]

これらのエラーが発生した理由を私は知らないのですか?

答えて

0

OpenSSLがインストールされていないか、証明書のエラーがあるようです。私はWindows上のコンポーザーで定期的に発生する最初の警告と同様の問題を覚えています。解決策は、不足している証明書をインストールすることでした(WAMPインストールのcertsフォルダに置きます)。リファレンスを参照してください

+0

ありがとうdbrumannが、それは問題を解決していなかったとComposerが正常に動作し、私はまだ働いていますこの... – simslay

関連する問題