도와주세요. 숨은 참조가 작동하지 않습니다. 여기서 내가 뭘 잘못하고 있니? 감사!PHP 메일 스크립트의 내 숨은 참조가 작동하지 않습니다. 친절하게 도와 드리겠습니다.
$to = "[email protected]";
$subject = "A message came in from the Website:";
$message ='{$message}';
$headers = "MIME-Version: 1.0\r \n";
$headers .= "Content-type: text/plain; charset=iso-8859-1\r \n";
$headers .= "From: $name <$email>\r\n";
$headers .= 'Bcc: [email protected]' . " \r\n"; //<- this part is not working :(
mail($to, $subject, $message, $headers);
큰 따옴표로 묶으십시오. –
'Content-type'을'$ headers. = '로 변경해야합니다. Content-type : text/plain; charset = iso-8859-1 '. "\ r \ n"; ' –
플러스'공간 '은 또한 역할을 할 수 있습니다. 문의 : http://www.w3schools.com/php/func_mail_mail.asp –