엔터 값을 어떻게 줘야 할 까요?
본문
수고하십니다.
$content .= "<br>"; 넣어 봤는데
이메일로 왔을 때
한줄로 다닥 다닥 붙어서 옵니다.
각 타이틀 마다
br을 주고 싶은데 어떻게 해야 할까요?
조언 좀 부탁드립니다.
감사합니다.
$content = nl2br(conv_unescape_nl(stripslashes($on_subject)));
$on_content .= "제목 : ".$on_subject;
$content .= "<br>";
$content = nl2br(conv_unescape_nl(stripslashes($on_tel)));
$on_content .= "연락처 : ".$on_tel;
$content .= "<br>";
$content = nl2br(conv_unescape_nl(stripslashes($on_name)));
$on_content .= "이름 : ".$on_name;
$content .= "<br>";
$content = nl2br(conv_unescape_nl(stripslashes($row_device)));
$on_content .= "차량번호 : ".$row_device;
답변 1
안녕하세요.
아래의 내용을 한번 참고해 보세요~
// 기존의 내용을 유지하며 새로운 내용을 추가하는 방식으로 변경
$content = ''; // 초기화
$content .= nl2br(conv_unescape_nl(stripslashes($on_subject))) . "<br>"; // 제목 추가
$content .= "제목 : ".$on_subject . "<br><br>"; // 제목 값과 줄바꿈 추가
$content .= nl2br(conv_unescape_nl(stripslashes($on_tel))) . "<br>"; // 연락처 추가
$content .= "연락처 : ".$on_tel . "<br><br>"; // 연락처 값과 줄바꿈 추가
$content .= nl2br(conv_unescape_nl(stripslashes($on_name))) . "<br>"; // 이름 추가
$content .= "이름 : ".$on_name . "<br><br>"; // 이름 값과 줄바꿈 추가
$content .= nl2br(conv_unescape_nl(stripslashes($row_device))) . "<br>"; // 차량번호 추가
$content .= "차량번호 : ".$row_device . "<br><br>"; // 차량번호 값과 줄바꿈 추가
// 최종 $content를 사용
답변을 작성하시기 전에 로그인 해주세요.