2011-04-14 5 views
0

웹 페이지에서 전자 메일을 보내도록 메일 양식을 설정 했으므로이 전자 메일에서 이미지를 설정하고 싶습니다. 내가이 이메일을 보낼 때이미지를 PHP 전자 메일로 보내기

$to = "[email protected]"; 
$subject = "Emergency details"; 
$body = "Passport picture: <img src='http://www.test.co.uk/files/passport_uploads/".$passport."'/>"; 
if (mail($to, $subject, $body)) { 
    echo("<p>Message successfully sent!</p>"); 
    } else { 
    echo("<p>Message delivery failed...</p>"); 
    } 

는, 출력은 다음과 같습니다 : 이것은 내가 현재 가지고있는 코드입니다

Passport picture: <img src='http://www.test.co.uk/files/passport_uploads/test.jpg"/> 

실제로 사진보다는 코드를 표시합니다. 이 대신 그림을 표시 할 수 있습니까? 당신이 실제로 텍스트 메일 아닌 HTML 메일을 보내는 때문입니다 도움

답변

0

일반 텍스트로 이메일을 보내는

메일() 함수의 매뉴얼을 읽어보세요. mail()의 네 번째 인수 (헤더)를 사용하여 html 메일로 해석되어야한다고 지정해야합니다.

예시는 documentation에서 찾을 수 있습니다.

코드 조각 :

// To send HTML mail, the Content-type header must be set 
$headers = 'MIME-Version: 1.0' . "\r\n"; 
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; 

// Additional headers 
$headers .= 'To: Mary <[email protected]>, Kelly <[email protected]>' . "\r\n"; 
$headers .= 'From: Birthday Reminder <[email protected]>' . "\r\n"; 
$headers .= 'Cc: [email protected]' . "\r\n"; 
$headers .= 'Bcc: [email protected]' . "\r\n"; 
3

에 대한

감사합니다. 적절한 헤더를 설정해야합니다. http://php.net/manual/en/function.mail.php

특히 : 예 # 4 보내기 HTML 이메일

// To send HTML mail, the Content-type header must be set 
$headers = 'MIME-Version: 1.0' . "\r\n"; 
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; 
0

당신은 간단한 메일을 전송하고,이 때문에이 텍스트로만 해석됩니다. 당신이하고 싶은 것은 간단한 텍스트 대신 html을 포함하는 메일을 보내는 것입니다. 메일의 내용을 설명하는 헤더를 메일에 포함시켜야합니다.

이 시도 :

$headers .= "--$boundary\r\n 
Content-Type: text/html; charset=ISO_8859-1\r\n 
Content-Transfer_Encoding: 7bit\r\n\r\n"; 

$to = "[email protected]"; 
$subject = "Emergency details"; 
$body = "Passport picture: <img src='http://www.test.co.uk/files/passport_uploads/".$passport."'/>"; 
if (mail($to, $subject, $body, $headers)) { 
echo("<p>Message successfully sent!</p>"); 
} else { 
echo("<p>Message delivery failed...</p>"); 
} 

(예 http://www.daniweb.com/web-development/php/threads/2959에서 찍은)

관련 문제