>  기사  >  백엔드 개발  >  PHP 이메일 보내기 기능, HTML 및 일반 텍스트 지원

PHP 이메일 보내기 기능, HTML 및 일반 텍스트 지원

WBOY
WBOY원래의
2016-07-25 08:43:09899검색
  1. function send_mail($emailaddress, $fromaddress, $namefrom, $emailsubject, $body)
  2. {
  3. $eol="n";
  4. $mime_boundary=md5(time());
  5. # Common Headers
  6. $headers .= "From: $namefrom <$fromaddress>".$eol;
  7. $headers .= "Reply-To: $namefrom <$fromaddress>".$eol;
  8. $headers .= "Return-Path: $namefrom <$fromaddress>".$eol;
  9. // these two to set reply address
  10. $headers .= "Message-ID: <".$now." TheSystem@".$_SERVER['SERVER_NAME'].">".$eol;
  11. $headers .= "X-Mailer: PHP v".phpversion().$eol; // These two to help avoid spam-filters
  12. # Boundry for marking the split & Multitype Headers
  13. $headers .= 'MIME-Version: 1.0'.$eol;
  14. $headers .= "Content-Type: multipart/related; boundary="".$mime_boundary.""".$eol;
  15. $msg = "";
  16. # Setup for text OR html
  17. $msg .= "Content-Type: multipart/alternative".$eol;
  18. # Text Version
  19. $msg .= "--".$mime_boundary.$eol;
  20. $msg .= "Content-Type: text/plain; charset=iso-8859-1".$eol;
  21. $msg .= "Content-Transfer-Encoding: 8bit".$eol;
  22. $msg .= strip_tags(str_replace("
    ", "n", $body)).$eol.$eol;
  23. # HTML Version
  24. $msg .= "--".$mime_boundary.$eol;
  25. $msg .= "Content-Type: text/html; charset=iso-8859-1".$eol;
  26. $msg .= "Content-Transfer-Encoding: 8bit".$eol;
  27. $msg .= $body.$eol.$eol;
  28. # Finished
  29. $msg .= "--".$mime_boundary."--".$eol.$eol; // finish with two eol's for better security. see Injection.
  30. # SEND THE EMAIL
  31. // ini_set(sendmail_from,$fromaddress); // the INI lines are to force the From Address to be used !
  32. mail($emailaddress, $emailsubject, $msg, $headers);
  33. // ini_restore(sendmail_from);
  34. // echo "mail send";
  35. return 1;
  36. }
  37. ?>
复制代码

이메일, PHP, HTML 보내기


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.