<?php
$to = "[email protected]";
$subject = "My subject";
$txt = "Hello world!";
$headers = "From: [email protected]";
mail($to,$subject,$txt,$headers);
var_dump($mail);
?>
이메일을 보내려고 합니다. 작동하지 않으며 이유를 모르겠습니다. 나도 오류가 발생하지 않습니다. 메일을 받지 못했습니다. 다른 이메일 주소도 시도해 봤습니다. lampp/xampp의 파일을 편집해야 합니까?
var_dump
언제나 돌아와bool(false)
코드를 좀 바꿨어요php.ini
[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP=localhost
; http://php.net/smtp-port
smtp_port=25
; For Win32 only.
; http://php.net/sendmail-from
;sendmail_from = [email protected]
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
;sendmail_path =
; Force the addition of the specified parameters to be passed as extra parameters
; to the sendmail binary. These parameters will always replace the value of
; the 5th parameter to mail(), even in safe mode.
;mail.force_extra_parameters =
; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
mail.add_x_header=On
; Log all mail() calls including the full path of the script, line #, to address and headers
;mail.log =
나에게도 같은 문제가 있지만
답변1
PHP 메일 기능을 사용하려면 몇 가지 백엔드 작업, 즉 SMTP 서비스를 올바르게 구성해야 합니다. php.ini의 [메일 기능] 섹션에서 관련 구성을 확인하고 위의 올바르게 구성된 SMTP 서비스에 액세스할 수 있도록 설정해야 합니다.
기본값은 localhost이므로 localhost에 SMTP를 설정하지 않거나 인터넷으로 메일 전달을 구성하지 않으면 PHP 메일 기능이 작동하지 않습니다.