php mail 함수 사용법
mail('받는주소', '제목', '내용', '보낸주소')
<?php
$to = "test@test.com";
$subject = "subject";
$content = "content";
$from = "from : test@test.com \r\n";
mail($to, $subject, $content, $from);
?>
유튜브 퍼가기 주소로 썸네일 가져오기 (5) | 2024.09.27 |
---|---|
이름 별표 표시(substr, mb_substr, strlen, mb_strlen) (0) | 2018.08.06 |
php 이미지 업로드 (1) | 2015.06.15 |
php 소수점 올림 버림 반올림 (0) | 2015.02.07 |
substr 문자 자르기 (0) | 2014.01.09 |
댓글 영역