PHP에서 HTML 전자 메일 보내기
PHPPHP에서 HTML 전자 메일 보내기
PHP에서 간단한 HTML 전자 메일을 보내려고합니다. 아래의 코드는 단순히 Gmail에서 빈 전자 메일을 생성합니다. 또한 'noname'이라는 빈 첨부 파일이 있는데, 이는 내가 원하는 것이 아닙니다. 그것은 단지 작동하지 않는 증상 일 수 있습니다.
내가 사용하는 코드는 다음과 같습니다.
<?php
//define the receiver of the email
$to = 'morrillkevin@gmail.com';
//define the subject of the email
$subject = 'Test HTML email';
//create a boundary string. It must be unique
//so we use the MD5 algorithm to generate a random hash
$random_hash = md5(date('r', time()));
//define the headers we want passed. Note that they are separated with \r\n
$headers = "From: webmaster@example.com\r\nReply-To: webmaster@example.com";
//add boundary string and mime type specification
$headers .= "\r\nContent-Type: multipart/alternative; boundary=\"PHP-alt-".$random_hash."\"";
//define the body of the message.
ob_start(); //Turn on output buffering
?>
--PHP-alt-<?php echo $random_hash; ?>
MIME-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Hello World!!!
This is simple text email message.
--PHP-alt-<?php echo $random_hash; ?>
MIME-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
<h2>Hello World!</h2>
<p>This is something with <b>HTML</b>formatting.</p>
--PHP-alt-<?php echo $random_hash; ?>--
<?
//copy current buffer contents into $message variable and delete current output buffer
$message = ob_get_clean();
//send the email
$mail_sent = @mail( $to, $subject, $message, $headers );
//if the message is sent successfully print "Mail sent". Otherwise print "Mail failed"
echo $mail_sent ? "Mail sent" : "Mail failed";
해결법
-
==============================
1.가능한 경우 PHPMailer 클래스를 사용하십시오. 그것은 당신의 작업을 크게 단순화 할 것입니다.
가능한 경우 PHPMailer 클래스를 사용하십시오. 그것은 당신의 작업을 크게 단순화 할 것입니다.
-
==============================
2.그 열쇠는 인코딩 유형입니다. 대신에:
그 열쇠는 인코딩 유형입니다. 대신에:
Content-Type: text/plain; charset="iso-8859-1"
나는 다음을 사용해야했다 :
Content-Type: text/plain; charset=us-ascii
그것은 자신의 텍스트 편집기에서 PHP 파일을 저장하는 방법에 대한 자세한 내용에 의존 할 수 있습니다. 나는 그것을 들여다 보지 않았지만, PHP의 iconv 함수는 나에게 기쁨을 가져다 줄 수도있다. 그래서 나는이 부분이 정말로 민감하다고 생각합니다.
다음은 전체적인 것을 전체적으로 보여주는 샘플 코드의 더 나은 스 니펫입니다.
$notice_text = "This is a multi-part message in MIME format."; $plain_text = "This is a plain text email.\r\nIt is very cool."; $html_text = "<html><body>This is an <b style='color:purple'>HTML</b> text email.\r\nIt is very cool.</body></html>"; $semi_rand = md5(time()); $mime_boundary = "==MULTIPART_BOUNDARY_$semi_rand"; $mime_boundary_header = chr(34) . $mime_boundary . chr(34); $to = "Me <foo@gmail.com>"; $from = "Me.com <me@me.com>"; $subject = "My Email"; $body = "$notice_text --$mime_boundary Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit $plain_text --$mime_boundary Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit $html_text --$mime_boundary--"; if (@mail($to, $subject, $body, "From: " . $from . "\n" . "MIME-Version: 1.0\n" . "Content-Type: multipart/alternative;\n" . " boundary=" . $mime_boundary_header)) echo "Email sent successfully."; else echo "Email NOT sent successfully!"; exit;
- 케빈
-
==============================
3.mail-function의 headers-parameter 내에 mime-type을 지정해야합니다. 이거 추가 해봐:
mail-function의 headers-parameter 내에 mime-type을 지정해야합니다. 이거 추가 해봐:
$header .= 'MIME-Version: 1.0' . "\r\n"; $header .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
메일 기능에 대한 PHP 문서에도 나와 있습니다. 보기 4보기
-
==============================
4.Swift Mailer를 사용하면 라이브러리를 사용하는 것이 문제가되지 않습니다.
Swift Mailer를 사용하면 라이브러리를 사용하는 것이 문제가되지 않습니다.
-
==============================
5.여기에 charsets에 대해 알아 두어야 할 중요한 것이 있습니다.
여기에 charsets에 대해 알아 두어야 할 중요한 것이 있습니다.
"Content-Type : text / plain; charset = \"UTF-8 \ "; \ n"
맞고뿐만 아니라
"Content-Type : text / plain; charset = UTF-8 \ n"
나는 나 같은 실수를 찾고있는 동안 좌절하는 다른 사람들을 도울 수 있기를 희망한다.
창문에는 \ r만을 쓰고 Linux-Servers에는 쓰지 않는 것을 잊지 마십시오. 그리고 헤더의 끝에는 여분의 빈 줄이 있어야합니다 :
$headers .= "Content-Type: text/plain; charset = \"UTF-8\";\n"; $headers .= "Content-Transfer-Encoding: 8bit\n"; $headers .= "\n";
-
==============================
6.다음 코드는 메일에서 HTML 태그를 제거하기 위해 노력하고 있습니다.
다음 코드는 메일에서 HTML 태그를 제거하기 위해 노력하고 있습니다.
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n"; $headers .= "Content-Transfer-Encoding: base64\r\n\r\n";
-
==============================
7.PHP에서 도움이되기를 바랍니다. $ fname = $ _ POST [ 'FirstName']; $ lname = $ _ POST [ 'LastName']; $ dob = $ _ POST [ 'DOB']; $ name = $ fname. ' '. $ lname; $ HTML = " <스타일> style>
개인 세부 정보 : strong> td> tr> 이름 : td> ". $ name." td> tr> 생년월일 : td> ". dob." td> tr> table> "; $ from = $ name; $ subject = '학생 등록 양식'; $ to = 'yourmail@mail.com'; //$to='development@ezone.com.np '; 함수 sendHTMLemail ($ HTML, $ from, $ to, $ subject) { // 먼저 전자 메일 헤더를 작성해야합니다. // "보낸 사람"주소를 설정하십시오. $ headers = "From : $ from \ r \ n"; // 이제 MIME 버전을 지정합니다. $ headers. = "MIME-Version : 1.0 \ r \ n"; // 이제 HTML 버전을 첨부합니다. $ headers. = / / "- $ boundary \ r \ n". "Content-Type : text / html; charset = ISO-8859-1 \ r \ n"; // "Content-Transfer-Encoding : base64 \ r \ n \ r \ n"; // 그런 다음 이메일을 보내십시오 .... if (mail ($ to, $ subject, $ HTML, $ headers)) { $ _SESSION [ 'msg'] = "세부 정보가 성공적으로 전송되었습니다!"; } 그밖에 { $ _SESSION [ 'msg'] = "보내기 실패! 나중에 다시 시도하십시오."; } } sendHTMLemail ($ HTML, $ from, $ to, $ subject); ?> PHP에서 도움이되기를 바랍니다. $ fname = $ _ POST [ 'FirstName']; $ lname = $ _ POST [ 'LastName']; $ dob = $ _ POST [ 'DOB']; $ name = $ fname. ' '. $ lname; $ HTML = " <스타일> style>
개인 세부 정보 : strong> td> tr> 이름 : td> ". $ name." td> tr> 생년월일 : td> ". dob." td> tr> table> "; $ from = $ name; $ subject = '학생 등록 양식'; $ to = 'yourmail@mail.com'; //$to='development@ezone.com.np '; 함수 sendHTMLemail ($ HTML, $ from, $ to, $ subject) { // 먼저 전자 메일 헤더를 작성해야합니다. // "보낸 사람"주소를 설정하십시오. $ headers = "From : $ from \ r \ n"; // 이제 MIME 버전을 지정합니다. $ headers. = "MIME-Version : 1.0 \ r \ n"; // 이제 HTML 버전을 첨부합니다. $ headers. = / / "- $ boundary \ r \ n". "Content-Type : text / html; charset = ISO-8859-1 \ r \ n"; // "Content-Transfer-Encoding : base64 \ r \ n \ r \ n"; // 그런 다음 이메일을 보내십시오 .... if (mail ($ to, $ subject, $ HTML, $ headers)) { $ _SESSION [ 'msg'] = "세부 정보가 성공적으로 전송되었습니다!"; } 그밖에 { $ _SESSION [ 'msg'] = "보내기 실패! 나중에 다시 시도하십시오."; } } sendHTMLemail ($ HTML, $ from, $ to, $ subject); ?> from https://stackoverflow.com/questions/3058897/sending-html-email-from-php by cc-by-sa and MIT license
'PHP' 카테고리의 다른 글
pdo - 멤버 함수 호출 prepare () 비 - 객체 [duplicate] (0) 2018.09.20 PHP는 다차원 배열 중복 제거 (0) 2018.09.20 html 태그 외부에서 일치하는 PHP 정규식 (0) 2018.09.19 전자 메일 주소 유효성 검사를위한 PHP 라이브러리가 있습니까? [닫은] (0) 2018.09.19 번들 생성 후 Symfony3 ClassNotFoundException (0) 2018.09.19