PHP & Others

PHP로 메일 보내기 - 숨은참조와 참조로 보내기

컨텐츠 정보

본문

메일 함수
<?php
mail('recipient@toodtood.net, toodtoodone@toodtood.net, metoo@toodtood.net',
'제목',
'내용이다.', 
"To: The Receiver <recipient@toodtood.net>\\n" .
"From: The Sender <sender@toodtood.net>\\n" . 
"cc: Interested <toodtoodone@toodtood.net>\\n" .   
"Bcc: Me Too <metoo@toodtood.net>\\n" .   
"X-Mailer: PHP 4.x");
?>

관련자료

댓글 0
등록된 댓글이 없습니다.
Today's proverb
자기 자신을 알기 위해서는 두 가지 일이 필요하다. 하나는 스스로 자기를 돌이켜보는 것이요. 다른 하나는 남이 평한 것을 듣는 일이다. (함석헌의 《뜻으로 본 한국역사》중에서)