분류
php
mail () 함수를 이용하여 메일보내기(php)
본문
코드 :
$email = "sample@receiver.com";
$subject = "메일제목";
$message = "메일내용";
$headers = "From: somebody@sender.com ";
mail($email, $subject, $message, $headers);
- 이전글nl2br()함수 사용하기 (php) 18.01.06
- 다음글이메일 주소에 이름과 주소 값을 추가하여 보내기 (php) 18.01.06