폼메일 내용을 메일로 전송하려고 합니다.
본문
안녕하세요.
기존 질문 내용을 잘못 작성한 것 같아서 다시 글을 올립니다. ㅠㅠ
현재 폼메일 페이지에 내용을 작성하면 이메일로 전송되게 하려고 합니다.
전송을 시켜주는 코드는 아래와 같습니다.
if($w == ""){
$online_sms_receive_email = base64_decode($remail);
// 문의글등록 이메일전송
if($w == '' && trim($online_sms_receive_email)) {
include_once(G5_LIB_PATH.'/mailer.lib.php');
$subject = $config['cf_title'].'홈페이지에 온라인문의가 접수되었습니다.';
$content = nl2br(conv_unescape_nl(stripslashes($on_content)));
mailer($config['cf_admin_email_name'], $on_email, $online_sms_receive_email, $subject, $content, 1);
}
}
$content = nl2br(conv_unescape_nl(stripslashes($on_content)));
위 부분에 $on_content 말고 다른 값, 예를 들어 on_phone(전화번호) 같은 값도 넣어주려면
PHP 코드를 어떻게 작성해야 할까요?;;
답변 부탁드립니다. 감사합니다.
!-->답변 3
$on_content .= "연락처 : ".$on_phone;
$content = nl2br(conv_unescape_nl(stripslashes($on_content)));
이렇게 추가해 주시면 되지 않을까요?
$content = $on_content
$content += "<br>";
$content += 전화번호
$content += "<br>";
$content += 이름
저렇게 하심될꺼같은데요
+= 이거였는지
.= 이거였느지 까먹었지만 ㅋㅋ
콘텐츠
전화번호
이름
이런식으로 나올듯
답변을 작성하시기 전에 로그인 해주세요.