2011-09-21 48 views
2

根本沒有使用PHPMailer,Swiftmailer,PEAR,Zend_mail或任何其他庫,我想發送一個內嵌圖像附件的電子郵件。讓PHP發送一個內嵌圖像附件的電子郵件

這裏的重要部分是內聯:我已經可以做其他事情了。

內聯意思是它能夠被圖像標籤中的電子郵件中的HTML使用。

我真的不想使用PHPMailer或類似的東西 - 我不是唯一一個試圖弄清楚如何在stackoverflow上做到這一點,到目前爲止我看到的所有問題都沒有得到但是爲什麼他們應該使用PEAR或Zend_mail或其他什麼的爭論。我不想這樣做,我不想爲此爭論。

+2

那麼,你可以做到這一點。這只是一大堆毫無意義的努力。有幾個用戶提供完整的亂碼來完成它。更難搜索。 (沒有任何代碼在你的問題中顯示:NARQ投票給我。) – mario

+2

首先閱讀MIME郵件格式,然後從那裏開始。這些庫很簡單,易於使用和可靠。如果你想要從頭開始建立自己的啞劇信息,那就去做吧,但不要在沒有用的時候哭。 –

+0

可能重複的[如何發送一個帶有內聯PHP圖像的HTML電子郵件](http://stackoverflow.com/questions/7288614/how-to-send-an-html-email-with-an-inline-附帶圖像與PHP) –

回答

1

這是你在找什麼?

<?php 
//define the receiver of the email 
$to = '[email protected]'; 
//define the subject of the email 
$subject = 'Test email with attachment'; 
//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: [email protected]\r\nReply-To: [email protected]"; 
//add boundary string and mime type specification 
$headers .= "\r\nContent-Type: multipart/mixed; boundary=\"PHP-mixed-".$random_hash."\""; 
//read the atachment file contents into a string, 
//encode it with MIME base64, 
//and split it into smaller chunks 
$attachment = chunk_split(base64_encode(file_get_contents('attachment.zip'))); 
//define the body of the message. 
ob_start(); //Turn on output buffering 
?> 
--PHP-mixed-<?php echo $random_hash; ?> 
Content-Type: multipart/alternative; boundary="PHP-alt-<?php echo $random_hash; ?>" 

--PHP-alt-<?php echo $random_hash; ?> 
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; ?> 
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; ?>-- 

--PHP-mixed-<?php echo $random_hash; ?> 
Content-Type: application/zip; name="attachment.zip" 
Content-Transfer-Encoding: base64 
Content-Disposition: attachment 

<?php echo $attachment; ?> 
--PHP-mixed-<?php echo $random_hash; ?>-- 

<?php 
//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"; 
?> 
相關問題