일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 스프링
- 스프링부트
- 인텔리제이
- 환경설정
- html
- 설치
- 이클립스
- #JVM
- Oracle
- 소스코드 맵
- 플러그인
- springboot
- 설정
- #eclipse
- CodeGlance
- IntelliJ
- #이클립스
- #Oracle
- Eclipse
- #java
- mariadb
- log4j
- #자바
- #오라클
- Like
- #자바가상머신
- log4j2
- Spring
- Plugins
- 오라클
- Today
- Total
커피와 개발자
PHP로 이메일 보내는 페이지(Source Code) 본문
$subject = "제목: ".$title; // E-Mail 제목
$to = "받는사람 이메일"; // 받는 사람
$from = "보내는 사람 이메일"; // 보내는 사람.
ob_start();
echo $content; //보낼 내용 입력
$content = ob_get_contents();
ob_end_clean();
$html = 'HTML' ; // HTML 형식으로 보냄
$flag = getSendMail($to, $from, $subject, $content, $html ) ;
function getSendMail($to, $from, $subject, $content, $html){
if ($html == 'TEXT') $content = nl2br(htmlspecialchars(stripslashes($content)));
if ($html == 'HTML') $content = stripslashes($content);
$to_exp = explode('|', $to);
$from_exp = explode('|', $from);
($to_exp[1]) ? $To = "\"$to_exp[1]\" <$to_exp[0]>" : $To = "$to_exp[0]";
($from_exp[1]) ? $Frm = "\"$from_exp[1]\" <$from_exp[0]>" : $Frm = "$from_exp[0]";
$Header = "From:$Frm\nContent-Type:text/html\nReply-To:$frm\nX-Mailer:PHP/".phpversion();
return @mail($To, $subject , $content , $Header);
}
'웹개발 > PHP' 카테고리의 다른 글
파일 다운로드 페이지 (0) | 2009.09.08 |
---|---|
php 엑셀파일로 데이터 저장하기 (0) | 2009.08.31 |
PHP 업로드 파일 삭제하기 (0) | 2009.08.10 |
PHP 다중업로드 하기 (0) | 2009.08.10 |
$_SERVER['HTTP_REFERER'] ? (0) | 2009.07.31 |