반응형
phpmailer를 이용한 메일을 전송할 때
SMTP Error: Could not connect to SMTP host.
라는 error가 발생했다면
메일 오류를 확인하기 위해 디버그를 활성화 시킨다.
$mail->SMTPDebug = 1;
오류 내용>
SMTP -> ERROR: Failed to connect to server: Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP? (286127862)
SMTP Error: Could not connect to SMTP host.
- ssl 관련 오류로 openssl이 정상으로 작동하는지 확인을 한다.
방법>
php와 openssl을 연동한다.
더보기>
- linux openssl 설치, 버전, php openssl 연동 확인
반응형